Enum Class ClusteringMode
java.lang.Object
java.lang.Enum<ClusteringMode>
com.evolveum.midpoint.model.impl.mining.algorithm.cluster.mechanism.ClusteringMode
- All Implemented Interfaces:
Serializable,Comparable<ClusteringMode>,Constable
Enumeration representing different clustering modes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a balanced clustering mode.Represents a balanced clustering mode with rules.Represents a balanced clustering mode with rules for outlier detection.Represents an unbalanced clustering mode.Represents an unbalanced clustering mode with rules. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClusteringModeReturns the enum constant of this class with the specified name.static ClusteringMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BALANCED
Represents a balanced clustering mode. -
UNBALANCED
Represents an unbalanced clustering mode. -
BALANCED_RULES
Represents a balanced clustering mode with rules. -
UNBALANCED_RULES
Represents an unbalanced clustering mode with rules. -
BALANCED_RULES_OUTLIER
Represents a balanced clustering mode with rules for outlier detection.
-
-
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
-