java.lang.Object
java.lang.Enum<MongoOp>
org.apache.drill.exec.store.mongo.common.MongoOp
All Implemented Interfaces:
Serializable, Comparable<MongoOp>

public enum MongoOp extends Enum<MongoOp>
  • Enum Constant Details

    • EQUAL

      public static final MongoOp EQUAL
    • NOT_EQUAL

      public static final MongoOp NOT_EQUAL
    • GREATER_OR_EQUAL

      public static final MongoOp GREATER_OR_EQUAL
    • GREATER

      public static final MongoOp GREATER
    • LESS_OR_EQUAL

      public static final MongoOp LESS_OR_EQUAL
    • LESS

      public static final MongoOp LESS
    • IN

      public static final MongoOp IN
    • AND

      public static final MongoOp AND
    • OR

      public static final MongoOp OR
    • NOT

      public static final MongoOp NOT
    • REGEX

      public static final MongoOp REGEX
    • OPTIONS

      public static final MongoOp OPTIONS
    • PROJECT

      public static final MongoOp PROJECT
    • COND

      public static final MongoOp COND
    • IFNULL

      public static final MongoOp IFNULL
    • IFNOTNULL

      public static final MongoOp IFNOTNULL
    • SUM

      public static final MongoOp SUM
    • GROUP_BY

      public static final MongoOp GROUP_BY
    • EXISTS

      public static final MongoOp EXISTS
  • Method Details

    • values

      public static MongoOp[] 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 MongoOp 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
    • getCompareOp

      public String getCompareOp()