java.lang.Object
java.lang.Enum<ClusteringMode>
com.evolveum.midpoint.model.impl.mining.algorithm.cluster.mechanism.ClusteringMode
All Implemented Interfaces:
Serializable, Comparable<ClusteringMode>, Constable

public enum ClusteringMode extends Enum<ClusteringMode>
Enumeration representing different clustering modes.
  • Enum Constant Details

    • BALANCED

      public static final ClusteringMode BALANCED
      Represents a balanced clustering mode.
    • UNBALANCED

      public static final ClusteringMode UNBALANCED
      Represents an unbalanced clustering mode.
    • BALANCED_RULES

      public static final ClusteringMode BALANCED_RULES
      Represents a balanced clustering mode with rules.
    • UNBALANCED_RULES

      public static final ClusteringMode UNBALANCED_RULES
      Represents an unbalanced clustering mode with rules.
    • BALANCED_RULES_OUTLIER

      public static final ClusteringMode BALANCED_RULES_OUTLIER
      Represents a balanced clustering mode with rules for outlier detection.
  • Method Details

    • values

      public static ClusteringMode[] 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

      public static ClusteringMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null