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