public static enum NeighborChainAgglomerativeClustering.ClusterLink extends Enum<NeighborChainAgglomerativeClustering.ClusterLink>
Enum Constant and Description |
---|
COMPLETE_LINK
Similarity will be based on most dissimilar item pair connecting
two clusters.
|
MCQUITTY_LINK
Similarity will be the unweighted average similarity of all item
pairs connecting two clusters.
|
MEAN_LINK
Similarity will be the average similarity of all item pairs
connecting two clusters.
|
MEDIAN_LINK
Similarity will be based on median points for each cluster.
|
SINGLE_LINK
Similarity will be based on the most similar item pair connecting
two clusters.
|
Modifier and Type | Method and Description |
---|---|
static NeighborChainAgglomerativeClustering.ClusterLink |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NeighborChainAgglomerativeClustering.ClusterLink[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NeighborChainAgglomerativeClustering.ClusterLink SINGLE_LINK
public static final NeighborChainAgglomerativeClustering.ClusterLink COMPLETE_LINK
public static final NeighborChainAgglomerativeClustering.ClusterLink MEAN_LINK
public static final NeighborChainAgglomerativeClustering.ClusterLink MEDIAN_LINK
public static final NeighborChainAgglomerativeClustering.ClusterLink MCQUITTY_LINK
public static NeighborChainAgglomerativeClustering.ClusterLink[] values()
for (NeighborChainAgglomerativeClustering.ClusterLink c : NeighborChainAgglomerativeClustering.ClusterLink.values()) System.out.println(c);
public static NeighborChainAgglomerativeClustering.ClusterLink 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.