com.shephertz.app42.paas.sdk.android.storage
Enum QueryBuilder.Operator

java.lang.Object
  extended by java.lang.Enum<QueryBuilder.Operator>
      extended by com.shephertz.app42.paas.sdk.android.storage.QueryBuilder.Operator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<QueryBuilder.Operator>
Enclosing class:
QueryBuilder

public static enum QueryBuilder.Operator
extends java.lang.Enum<QueryBuilder.Operator>


Enum Constant Summary
AND
           
EQUALS
           
GREATER_THAN
           
GREATER_THAN_EQUALTO
           
LESS_THAN
           
LESS_THAN_EQUALTO
           
LIKE
           
NOT_EQUALS
           
OR
           
 
Method Summary
 java.lang.String getValue()
           
static QueryBuilder.Operator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static QueryBuilder.Operator[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AND

public static final QueryBuilder.Operator AND

EQUALS

public static final QueryBuilder.Operator EQUALS

GREATER_THAN

public static final QueryBuilder.Operator GREATER_THAN

GREATER_THAN_EQUALTO

public static final QueryBuilder.Operator GREATER_THAN_EQUALTO

LESS_THAN

public static final QueryBuilder.Operator LESS_THAN

LESS_THAN_EQUALTO

public static final QueryBuilder.Operator LESS_THAN_EQUALTO

LIKE

public static final QueryBuilder.Operator LIKE

NOT_EQUALS

public static final QueryBuilder.Operator NOT_EQUALS

OR

public static final QueryBuilder.Operator OR
Method Detail

getValue

public java.lang.String getValue()

valueOf

public static QueryBuilder.Operator valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static QueryBuilder.Operator[] 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 (QueryBuilder.Operator c : QueryBuilder.Operator.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared