|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Distributions.Calculation>
Models.Distributions.Calculation
public static enum Distributions.Calculation
Enumeration of the different methods of calculating a distribution
Enum Constant Summary | |
---|---|
EIGEN
Used the Eigendecomposition to calculate the distribution |
|
REPEAT
Use the limiting value of applying a probability matrix (generated from the rate matrix) multiple times to an arbitary distribution. |
Method Summary | |
---|---|
static Distributions.Calculation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Distributions.Calculation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Distributions.Calculation EIGEN
public static final Distributions.Calculation REPEAT
Method Detail |
---|
public static Distributions.Calculation[] values()
for (Distributions.Calculation c : Distributions.Calculation.values()) System.out.println(c);
public static Distributions.Calculation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |