java.lang.Object
java.lang.Enum<Operation>
com.apple.foundationdb.relational.api.fluentsql.expression.Operation
All Implemented Interfaces:
Serializable, Comparable<Operation>, java.lang.constant.Constable

public enum Operation extends Enum<Operation>
This is a placeholder of all supported operations.
  • Enum Constant Details

    • EQUAL

      public static final Operation EQUAL
    • NOT_EQUAL

      public static final Operation NOT_EQUAL
    • IS_NULL

      public static final Operation IS_NULL
    • IS_NOT_NULL

      public static final Operation IS_NOT_NULL
    • GREATER_THAN

      public static final Operation GREATER_THAN
    • LESS_THAN

      public static final Operation LESS_THAN
    • GREATER_THAN_EQUALS

      public static final Operation GREATER_THAN_EQUALS
    • LESS_THAN_EQUALS

      public static final Operation LESS_THAN_EQUALS
    • AND

      public static final Operation AND
    • OR

      public static final Operation OR
    • NOT

      public static final Operation NOT
    • ADD

      public static final Operation ADD
    • DIV

      public static final Operation DIV
    • MUL

      public static final Operation MUL
    • SUB

      public static final Operation SUB
    • MOD

      public static final Operation MOD
    • GREATEST

      public static final Operation GREATEST
    • JAVA_CALL

      public static final Operation JAVA_CALL
  • Method Details

    • values

      public static Operation[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Operation valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getType

      @Nonnull public Class<?> getType()