Package org.nlpub.watset.util
Enum Class ClusteringAlgorithmProvider.ProvidingAlgorithm
java.lang.Object
java.lang.Enum<ClusteringAlgorithmProvider.ProvidingAlgorithm>
org.nlpub.watset.util.ClusteringAlgorithmProvider.ProvidingAlgorithm
- All Implemented Interfaces:
Serializable
,Comparable<ClusteringAlgorithmProvider.ProvidingAlgorithm>
,java.lang.constant.Constable
- Enclosing class:
- ClusteringAlgorithmProvider<V,
E>
public static enum ClusteringAlgorithmProvider.ProvidingAlgorithm
extends Enum<ClusteringAlgorithmProvider.ProvidingAlgorithm>
Clustering algorithms that
ClusteringAlgorithmProvider
knows how to provide.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLabel forChineseWhispers
.Label forComponentsClustering
.Label forEmptyClustering
.Label forGirvanNewmanClustering
.Label forKSpanningTreeClustering
.Label forMarkovClustering
.Label forMarkovClusteringExternal
.Label forMaxMax
.Label forSingletonClustering
.Label forSpectralClustering
.Label forTogetherClustering
. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EMPTY
Label forEmptyClustering
. -
TOGETHER
Label forTogetherClustering
. -
SINGLETON
Label forSingletonClustering
. -
COMPONENTS
Label forComponentsClustering
. -
K_SPANNING_TREE
Label forKSpanningTreeClustering
. -
GIRVAN_NEWMAN
Label forGirvanNewmanClustering
. -
SPECTRAL
Label forSpectralClustering
. -
CHINESE_WHISPERS
Label forChineseWhispers
. -
MARKOV_CLUSTERING
Label forMarkovClustering
. -
MARKOV_CLUSTERING_EXTERNAL
Label forMarkovClusteringExternal
. -
MAXMAX
Label forMaxMax
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-