public static enum Measure.TYPES extends Enum<Measure.TYPES>
Enum Constant and Description |
---|
dissimilarity |
distance |
other |
similarity |
Modifier and Type | Method and Description |
---|---|
static Measure.TYPES |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Measure.TYPES[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Measure.TYPES similarity
public static final Measure.TYPES dissimilarity
public static final Measure.TYPES distance
public static final Measure.TYPES other
public static Measure.TYPES[] values()
for (Measure.TYPES c : Measure.TYPES.values()) System.out.println(c);
public static Measure.TYPES valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null(C) INRIA, UPMF & friends, 2008-2015