cc.plural.jsonij.jpath
Enum ExpressionPredicate.ExpressionPredicateOperator

java.lang.Object
  extended by java.lang.Enum<ExpressionPredicate.ExpressionPredicateOperator>
      extended by cc.plural.jsonij.jpath.ExpressionPredicate.ExpressionPredicateOperator
All Implemented Interfaces:
Serializable, Comparable<ExpressionPredicate.ExpressionPredicateOperator>
Enclosing class:
ExpressionPredicate

public static enum ExpressionPredicate.ExpressionPredicateOperator
extends Enum<ExpressionPredicate.ExpressionPredicateOperator>


Enum Constant Summary
EQUAL
           
GREATER
           
GREATER_EQUAL
           
LESS
           
LESS_EQUAL
           
NOT_NULL
           
 
Method Summary
static ExpressionPredicate.ExpressionPredicateOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ExpressionPredicate.ExpressionPredicateOperator[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOT_NULL

public static final ExpressionPredicate.ExpressionPredicateOperator NOT_NULL

EQUAL

public static final ExpressionPredicate.ExpressionPredicateOperator EQUAL

LESS

public static final ExpressionPredicate.ExpressionPredicateOperator LESS

GREATER

public static final ExpressionPredicate.ExpressionPredicateOperator GREATER

LESS_EQUAL

public static final ExpressionPredicate.ExpressionPredicateOperator LESS_EQUAL

GREATER_EQUAL

public static final ExpressionPredicate.ExpressionPredicateOperator GREATER_EQUAL
Method Detail

values

public static final ExpressionPredicate.ExpressionPredicateOperator[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ExpressionPredicate.ExpressionPredicateOperator c : ExpressionPredicate.ExpressionPredicateOperator.values())
        System.out.println(c);

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

valueOf

public static ExpressionPredicate.ExpressionPredicateOperator 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


Copyright © 2012. All Rights Reserved.