Enum Class Comparison.Operator

java.lang.Object
java.lang.Enum<Comparison.Operator>
com.sas.lsaf.query.Comparison.Operator
All Implemented Interfaces:
Serializable, Comparable<Comparison.Operator>, Constable
Enclosing class:
Comparison

public static enum Comparison.Operator extends Enum<Comparison.Operator>
The method with which to evaluate data that is compared to a value.
  • Enum Constant Details

    • EQUAL

      public static final Comparison.Operator EQUAL
      Equal to.
    • NOT_EQUAL

      public static final Comparison.Operator NOT_EQUAL
      Not equal to.
    • LESS_THAN

      public static final Comparison.Operator LESS_THAN
      Less than.
    • GREATER_THAN

      public static final Comparison.Operator GREATER_THAN
      Greater than.
    • LESS_THAN_OR_EQUAL

      public static final Comparison.Operator LESS_THAN_OR_EQUAL
      Less than or equal to.
    • GREATER_THAN_OR_EQUAL

      public static final Comparison.Operator GREATER_THAN_OR_EQUAL
      Greater than or equal to.
    • LIKE

      public static final Comparison.Operator LIKE
      Equates to true if the value matches a pattern. Wildcards are supported with this operator.
    • NOT_LIKE

      public static final Comparison.Operator NOT_LIKE
      Equates to true if the value does not matches the pattern. Wildcards are supported with this operator.
  • Method Details

    • values

      public static Comparison.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 Comparison.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