com.ebay.erl.mobius.core.criterion
Enum RelationalOperator

java.lang.Object
  extended by java.lang.Enum<RelationalOperator>
      extended by com.ebay.erl.mobius.core.criterion.RelationalOperator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RelationalOperator>

public enum RelationalOperator
extends java.lang.Enum<RelationalOperator>

This product is licensed under the Apache License, Version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0. This product contains portions derived from Apache hadoop which is licensed under the Apache License, Version 2.0, available at http://hadoop.apache.org. © 2007 – 2012 eBay Inc., Evan Chiu, Woody Zhou, Neel Sundaresan


Enum Constant Summary
EQ
          equals to (==)
GE
          greater than or equals to (>=)
GT
          greater than (>)
LE
          less than or equals to (<=)
LT
          less than (<)
NE
          not equals to (!=)
NOT_NULL
           
NOT_WITHIN
           
WITHIN
           
 
Method Summary
static RelationalOperator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RelationalOperator[] 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 RelationalOperator EQ
equals to (==)


NE

public static final RelationalOperator NE
not equals to (!=)


GE

public static final RelationalOperator GE
greater than or equals to (>=)


GT

public static final RelationalOperator GT
greater than (>)


LE

public static final RelationalOperator LE
less than or equals to (<=)


LT

public static final RelationalOperator LT
less than (<)


WITHIN

public static final RelationalOperator WITHIN

NOT_WITHIN

public static final RelationalOperator NOT_WITHIN

NOT_NULL

public static final RelationalOperator NOT_NULL
Method Detail

values

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

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

valueOf

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