public enum MongodbOps extends Enum<MongodbOps> implements Operator
Enum Constant and Description |
---|
ELEM_MATCH |
NEAR |
NEAR_SPHERE |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getType()
Get the result type of the operator
|
static MongodbOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MongodbOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MongodbOps NEAR
public static final MongodbOps ELEM_MATCH
public static final MongodbOps NEAR_SPHERE
public static MongodbOps[] values()
for (MongodbOps c : MongodbOps.values()) System.out.println(c);
public static MongodbOps valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2007–2016 Querydsl. All rights reserved.