org.tynamo.search
Enum SearchFilterOperator

java.lang.Object
  extended by java.lang.Enum<SearchFilterOperator>
      extended by org.tynamo.search.SearchFilterOperator
All Implemented Interfaces:
Serializable, Comparable<SearchFilterOperator>

public enum SearchFilterOperator
extends Enum<SearchFilterOperator>


Enum Constant Summary
contains
           
eq
           
ge
           
ge_le
           
ge_lt
           
gt
           
gt_le
           
gt_lt
           
le
           
le_ge
           
le_gt
           
lt
           
lt_ge
           
lt_gt
           
ne
           
none_of
           
one_of
           
 
Method Summary
static SearchFilterOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SearchFilterOperator[] 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

eq

public static final SearchFilterOperator eq

ne

public static final SearchFilterOperator ne

lt

public static final SearchFilterOperator lt

gt

public static final SearchFilterOperator gt

le

public static final SearchFilterOperator le

ge

public static final SearchFilterOperator ge

lt_gt

public static final SearchFilterOperator lt_gt

le_ge

public static final SearchFilterOperator le_ge

lt_ge

public static final SearchFilterOperator lt_ge

le_gt

public static final SearchFilterOperator le_gt

gt_lt

public static final SearchFilterOperator gt_lt

ge_le

public static final SearchFilterOperator ge_le

gt_le

public static final SearchFilterOperator gt_le

ge_lt

public static final SearchFilterOperator ge_lt

one_of

public static final SearchFilterOperator one_of

none_of

public static final SearchFilterOperator none_of

contains

public static final SearchFilterOperator contains
Method Detail

values

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

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

valueOf

public static SearchFilterOperator 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


Copyright © 2004-2012. All Rights Reserved.