com.ibm.ram.internal.jaxb
Enum RuleOperator

java.lang.Object
  extended by java.lang.Enum<RuleOperator>
      extended by com.ibm.ram.internal.jaxb.RuleOperator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RuleOperator>

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

Java class for RuleOperator.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="RuleOperator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="EQUALS"/>
     <enumeration value="NOT_EQUALS"/>
     <enumeration value="LESS_THAN"/>
     <enumeration value="LESS_THAN_OR_EQUALS"/>
     <enumeration value="GREATER_THAN"/>
     <enumeration value="GREATER_THAN_OR_EQUALS"/>
     <enumeration value="AND"/>
     <enumeration value="OR"/>
     <enumeration value="ANY"/>
     <enumeration value="EMPTY"/>
     <enumeration value="NOT"/>
     <enumeration value="CONTAINS"/>
     <enumeration value="DOES_NOT_CONTAIN"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AND
           
ANY
           
CONTAINS
           
DOES_NOT_CONTAIN
           
EMPTY
           
EQUALS
           
GREATER_THAN
           
GREATER_THAN_OR_EQUALS
           
LESS_THAN
           
LESS_THAN_OR_EQUALS
           
NOT
           
NOT_EQUALS
           
OR
           
 
Method Summary
static RuleOperator fromValue(java.lang.String v)
           
 java.lang.String value()
           
static RuleOperator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RuleOperator[] 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

AND

public static final RuleOperator AND

ANY

public static final RuleOperator ANY

CONTAINS

public static final RuleOperator CONTAINS

DOES_NOT_CONTAIN

public static final RuleOperator DOES_NOT_CONTAIN

EMPTY

public static final RuleOperator EMPTY

EQUALS

public static final RuleOperator EQUALS

GREATER_THAN

public static final RuleOperator GREATER_THAN

GREATER_THAN_OR_EQUALS

public static final RuleOperator GREATER_THAN_OR_EQUALS

LESS_THAN

public static final RuleOperator LESS_THAN

LESS_THAN_OR_EQUALS

public static final RuleOperator LESS_THAN_OR_EQUALS

NOT

public static final RuleOperator NOT

NOT_EQUALS

public static final RuleOperator NOT_EQUALS

OR

public static final RuleOperator OR
Method Detail

values

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

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

valueOf

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

value

public java.lang.String value()

fromValue

public static RuleOperator fromValue(java.lang.String v)