public static enum DNAModelFactory.DNAModel extends java.lang.Enum<DNAModelFactory.DNAModel>
Enum Constant and Description |
---|
F81
Felsenstein 81 model
|
GTR
General Time Reversible (GTR) model
|
HKY
The HKY model
|
JC
The Jukes-Cantor model
|
K2P
The Kimura 2-parameter model
|
Modifier and Type | Method and Description |
---|---|
static DNAModelFactory.DNAModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DNAModelFactory.DNAModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DNAModelFactory.DNAModel F81
public static final DNAModelFactory.DNAModel GTR
public static final DNAModelFactory.DNAModel HKY
public static final DNAModelFactory.DNAModel JC
public static final DNAModelFactory.DNAModel K2P
public static DNAModelFactory.DNAModel[] values()
for (DNAModelFactory.DNAModel c : DNAModelFactory.DNAModel.values()) System.out.println(c);
public static DNAModelFactory.DNAModel 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