org.usergrid.mq
Enum Query.FilterOperator

java.lang.Object
  extended by java.lang.Enum<Query.FilterOperator>
      extended by org.usergrid.mq.Query.FilterOperator
All Implemented Interfaces:
Serializable, Comparable<Query.FilterOperator>
Enclosing class:
Query

public static enum Query.FilterOperator
extends Enum<Query.FilterOperator>


Enum Constant Summary
CONTAINS
           
EQUAL
           
GREATER_THAN
           
GREATER_THAN_OR_EQUAL
           
IN
           
LESS_THAN
           
LESS_THAN_OR_EQUAL
           
NOT_EQUAL
           
WITHIN
           
 
Method Summary
static Query.FilterOperator find(String s)
           
 String toString()
           
static Query.FilterOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Query.FilterOperator[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LESS_THAN

public static final Query.FilterOperator LESS_THAN

LESS_THAN_OR_EQUAL

public static final Query.FilterOperator LESS_THAN_OR_EQUAL

GREATER_THAN

public static final Query.FilterOperator GREATER_THAN

GREATER_THAN_OR_EQUAL

public static final Query.FilterOperator GREATER_THAN_OR_EQUAL

EQUAL

public static final Query.FilterOperator EQUAL

NOT_EQUAL

public static final Query.FilterOperator NOT_EQUAL

IN

public static final Query.FilterOperator IN

CONTAINS

public static final Query.FilterOperator CONTAINS

WITHIN

public static final Query.FilterOperator WITHIN
Method Detail

values

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

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

valueOf

public static Query.FilterOperator 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

find

public static Query.FilterOperator find(String s)

toString

public String toString()
Overrides:
toString in class Enum<Query.FilterOperator>


Copyright © 2013. All Rights Reserved.