Enum Class OPERATOR

java.lang.Object
java.lang.Enum<OPERATOR>
org.kie.pmml.api.enums.OPERATOR
All Implemented Interfaces:
Serializable, Comparable<OPERATOR>, Constable, Named

public enum OPERATOR extends Enum<OPERATOR> implements Named
  • Enum Constant Details

    • EQUAL

      public static final OPERATOR EQUAL
    • NOT_EQUAL

      public static final OPERATOR NOT_EQUAL
    • LESS_THAN

      public static final OPERATOR LESS_THAN
    • LESS_OR_EQUAL

      public static final OPERATOR LESS_OR_EQUAL
    • GREATER_THAN

      public static final OPERATOR GREATER_THAN
    • GREATER_OR_EQUAL

      public static final OPERATOR GREATER_OR_EQUAL
    • IS_MISSING

      public static final OPERATOR IS_MISSING
    • IS_NOT_MISSING

      public static final OPERATOR IS_NOT_MISSING
  • Method Details

    • values

      public static OPERATOR[] 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 OPERATOR 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
    • byName

      public static OPERATOR byName(String name)
    • isOnlyNumberOperator

      public boolean isOnlyNumberOperator()
      Returns true if the OPERATOR is applicable only for NUMBERs
      Returns:
    • isValueOperator

      public boolean isValueOperator()
    • getName

      public String getName()
      Specified by:
      getName in interface Named
    • getOperator

      public String getOperator()