public static enum ClutoClustering.Method extends Enum<ClutoClustering.Method>
Enum Constant and Description |
---|
AGGLOMERATIVE |
BAGGLO |
KMEANS |
NEAREST_NEIGHBOOR |
REPEATED_BISECTIONS_REPEATED |
Modifier and Type | Method and Description |
---|---|
static ClutoClustering.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClutoClustering.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClutoClustering.Method REPEATED_BISECTIONS_REPEATED
public static final ClutoClustering.Method KMEANS
public static final ClutoClustering.Method AGGLOMERATIVE
public static final ClutoClustering.Method NEAREST_NEIGHBOOR
public static final ClutoClustering.Method BAGGLO
public static ClutoClustering.Method[] values()
for (ClutoClustering.Method c : ClutoClustering.Method.values()) System.out.println(c);
public static ClutoClustering.Method 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 nullCopyright © 2012. All Rights Reserved.