public static enum PairwiseDistanceCalculator.PWD_DISTANCE_METHOD extends java.lang.Enum<PairwiseDistanceCalculator.PWD_DISTANCE_METHOD>
Enum Constant | Description |
---|---|
FRACTIONAL_DISSIMILARITY |
|
KIMURA_DISTANCE |
|
POISSON_DISTANCE |
Modifier and Type | Method | Description |
---|---|---|
static PairwiseDistanceCalculator.PWD_DISTANCE_METHOD |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PairwiseDistanceCalculator.PWD_DISTANCE_METHOD[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PairwiseDistanceCalculator.PWD_DISTANCE_METHOD KIMURA_DISTANCE
public static final PairwiseDistanceCalculator.PWD_DISTANCE_METHOD POISSON_DISTANCE
public static final PairwiseDistanceCalculator.PWD_DISTANCE_METHOD FRACTIONAL_DISSIMILARITY
public static PairwiseDistanceCalculator.PWD_DISTANCE_METHOD[] values()
for (PairwiseDistanceCalculator.PWD_DISTANCE_METHOD c : PairwiseDistanceCalculator.PWD_DISTANCE_METHOD.values()) System.out.println(c);
public static PairwiseDistanceCalculator.PWD_DISTANCE_METHOD 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