Enum Class ClassifierType

java.lang.Object
java.lang.Enum<ClassifierType>
com.pervasive.datarush.matching.ClassifierType
All Implemented Interfaces:
Serializable, Comparable<ClassifierType>, java.lang.constant.Constable

public enum ClassifierType extends Enum<ClassifierType>
Defines the types of classifiers supported by matching.
  • Enum Constant Details

    • WAVG

      public static final ClassifierType WAVG
      The weighted average classifier. Uses an array of integer weights to generate a record score per pair.
  • Method Details

    • values

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