@PublicAPI public enum MetricsType extends java.lang.Enum<MetricsType>
Enum Constant and Description |
---|
DEFAULT |
DICE |
EUCLIDEAN |
NORMALIZED_EUCLIDEAN |
SUBSTRUCTURE |
SUPERSTRUCTURE |
TANIMOTO |
TVERSKY |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
SEPARATOR |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getSimpleParamString() |
static MetricsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetricsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricsType TANIMOTO
public static final MetricsType TVERSKY
public static final MetricsType DICE
public static final MetricsType EUCLIDEAN
public static final MetricsType NORMALIZED_EUCLIDEAN
public static final MetricsType SUBSTRUCTURE
public static final MetricsType SUPERSTRUCTURE
public static final MetricsType DEFAULT
public static final java.lang.String SEPARATOR
public static MetricsType[] values()
for (MetricsType c : MetricsType.values()) System.out.println(c);
public static MetricsType 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 nullpublic java.lang.String getSimpleParamString()
SEPARATOR
is used ";" .