public enum TreeConstructorType extends java.lang.Enum<TreeConstructorType>
Enum Constant | Description |
---|---|
AV |
What does this stand for? (Aleix: Nov 2015)
|
NJ |
Neighbor Joining Algorithm
|
UPGMA |
Unweighted Pair-Group Method with Arithmetic mean
|
Modifier and Type | Method | Description |
---|---|---|
static TreeConstructorType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TreeConstructorType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeConstructorType NJ
public static final TreeConstructorType UPGMA
public static final TreeConstructorType AV
public static TreeConstructorType[] values()
for (TreeConstructorType c : TreeConstructorType.values()) System.out.println(c);
public static TreeConstructorType 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