public enum MongoDBOperator extends java.lang.Enum<MongoDBOperator>
| Enum Constant and Description |
|---|
BeginsWith |
Between |
ElementMatches |
Equal |
GreaterThan |
GreaterThanEqual |
IsNotNull |
IsNull |
LessThan |
LessThanEqual |
NotEqual |
NotWithin |
Within |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
buildConstraint(java.util.Iterator argsIterator) |
static MongoDBOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MongoDBOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MongoDBOperator NotEqual
public static final MongoDBOperator GreaterThanEqual
public static final MongoDBOperator LessThanEqual
public static final MongoDBOperator Equal
public static final MongoDBOperator GreaterThan
public static final MongoDBOperator LessThan
public static final MongoDBOperator NotWithin
public static final MongoDBOperator Within
public static final MongoDBOperator Between
public static final MongoDBOperator IsNull
public static final MongoDBOperator IsNotNull
public static final MongoDBOperator BeginsWith
public static final MongoDBOperator ElementMatches
public static MongoDBOperator[] values()
for (MongoDBOperator c : MongoDBOperator.values()) System.out.println(c);
public static MongoDBOperator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.Object buildConstraint(java.util.Iterator argsIterator)
Copyright © 2017. All Rights Reserved.