Enum Class OQueryOperator.ORDER

java.lang.Object
java.lang.Enum<OQueryOperator.ORDER>
com.orientechnologies.orient.core.sql.operator.OQueryOperator.ORDER
All Implemented Interfaces:
Serializable, Comparable<OQueryOperator.ORDER>, Constable
Enclosing class:
OQueryOperator

public static enum OQueryOperator.ORDER extends Enum<OQueryOperator.ORDER>
  • Enum Constant Details

    • UNKNOWNED

      public static final OQueryOperator.ORDER UNKNOWNED
      Used when order compared to other operator cannot be evaluated or has no consequences.
    • BEFORE

      public static final OQueryOperator.ORDER BEFORE
      Used when this operator must be before the other one
    • AFTER

      public static final OQueryOperator.ORDER AFTER
      Used when this operator must be after the other one
    • EQUAL

      public static final OQueryOperator.ORDER EQUAL
      Used when this operator is equal the other one
  • Method Details

    • values

      public static OQueryOperator.ORDER[] 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 OQueryOperator.ORDER 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