org.iternine.jeppetto.dao.mongodb
Enum MongoDBOperator
java.lang.Object
java.lang.Enum<MongoDBOperator>
org.iternine.jeppetto.dao.mongodb.MongoDBOperator
- All Implemented Interfaces:
- Serializable, Comparable<MongoDBOperator>
public enum MongoDBOperator
- extends Enum<MongoDBOperator>
NotEqual
public static final MongoDBOperator NotEqual
GreaterThanEqual
public static final MongoDBOperator GreaterThanEqual
LessThanEqual
public static final MongoDBOperator LessThanEqual
Equal
public static final MongoDBOperator Equal
GreaterThan
public static final MongoDBOperator GreaterThan
LessThan
public static final MongoDBOperator LessThan
NotWithin
public static final MongoDBOperator NotWithin
Within
public static final MongoDBOperator Within
Between
public static final MongoDBOperator Between
IsNull
public static final MongoDBOperator IsNull
IsNotNull
public static final MongoDBOperator IsNotNull
ElementMatches
public static final MongoDBOperator ElementMatches
values
public static MongoDBOperator[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (MongoDBOperator c : MongoDBOperator.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static MongoDBOperator 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
buildConstraint
public Object buildConstraint(Iterator argsIterator)
Copyright © 2012. All Rights Reserved.