public static enum Distributions.Calculation extends java.lang.Enum<Distributions.Calculation>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Distributions.Calculation EIGEN
public static final Distributions.Calculation REPEAT
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 namejava.lang.NullPointerException
- if the argument is null