com.xml_project.morganaxproc.xdm
Enum XS_AnyAtomicType.ValueComparers

java.lang.Object
  extended by java.lang.Enum<XS_AnyAtomicType.ValueComparers>
      extended by com.xml_project.morganaxproc.xdm.XS_AnyAtomicType.ValueComparers
All Implemented Interfaces:
Serializable, Comparable<XS_AnyAtomicType.ValueComparers>
Enclosing class:
XS_AnyAtomicType

public static enum XS_AnyAtomicType.ValueComparers
extends Enum<XS_AnyAtomicType.ValueComparers>

An enumeration of the defined compare operations


Enum Constant Summary
EQ
           
GE
           
GT
           
LE
           
LT
           
NE
           
 
Method Summary
static XS_AnyAtomicType.ValueComparers valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XS_AnyAtomicType.ValueComparers[] 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 XS_AnyAtomicType.ValueComparers EQ

NE

public static final XS_AnyAtomicType.ValueComparers NE

LT

public static final XS_AnyAtomicType.ValueComparers LT

LE

public static final XS_AnyAtomicType.ValueComparers LE

GT

public static final XS_AnyAtomicType.ValueComparers GT

GE

public static final XS_AnyAtomicType.ValueComparers GE
Method Detail

values

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

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

valueOf

public static XS_AnyAtomicType.ValueComparers 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