org.iternine.jeppetto.dao.mongodb
Enum MongoDBOperator

java.lang.Object
  extended by java.lang.Enum<MongoDBOperator>
      extended by org.iternine.jeppetto.dao.mongodb.MongoDBOperator
All Implemented Interfaces:
Serializable, Comparable<MongoDBOperator>

public enum MongoDBOperator
extends Enum<MongoDBOperator>


Enum Constant Summary
Between
           
ElementMatches
           
Equal
           
GreaterThan
           
GreaterThanEqual
           
IsNotNull
           
IsNull
           
LessThan
           
LessThanEqual
           
NotEqual
           
NotWithin
           
Within
           
 
Method Summary
 Object buildConstraint(Iterator argsIterator)
           
static MongoDBOperator valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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 © 2011. All Rights Reserved.