Enum MongodbOps

java.lang.Object
java.lang.Enum<MongodbOps>
com.querydsl.mongodb.MongodbOps
All Implemented Interfaces:
Operator, Serializable, Comparable<MongodbOps>, java.lang.constant.Constable

public enum MongodbOps extends Enum<MongodbOps> implements Operator
MongoDB specific operators
Author:
tiwe, sangyong choi
  • Enum Constant Details

    • NEAR

      public static final MongodbOps NEAR
    • GEO_WITHIN_BOX

      public static final MongodbOps GEO_WITHIN_BOX
    • ELEM_MATCH

      public static final MongodbOps ELEM_MATCH
    • NO_MATCH

      public static final MongodbOps NO_MATCH
    • NEAR_SPHERE

      public static final MongodbOps NEAR_SPHERE
    • GEO_INTERSECTS

      public static final MongodbOps GEO_INTERSECTS
    • ALL

      public static final MongodbOps ALL
  • Method Details

    • values

      public static MongodbOps[] 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 MongodbOps 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

      public Class<?> getType()
      Specified by:
      getType in interface Operator