com.ace.moab.api.triggers
Enum TriggerVariableType

java.lang.Object
  extended by java.lang.Enum<TriggerVariableType>
      extended by com.ace.moab.api.triggers.TriggerVariableType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TriggerVariableType>

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


Enum Constant Summary
EQUALS
           
GREATER_THAN
           
GREATER_THAN_OR_EQUALS
           
LESS_THAN
           
LESS_THAN_OR_EQUALS
           
NOT_EQUALS
           
NOT_SET
           
SET
           
 
Method Summary
static TriggerVariableType parseString(java.lang.String string)
           
 java.lang.String toString()
           
static TriggerVariableType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TriggerVariableType[] 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, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SET

public static final TriggerVariableType SET

NOT_SET

public static final TriggerVariableType NOT_SET

EQUALS

public static final TriggerVariableType EQUALS

NOT_EQUALS

public static final TriggerVariableType NOT_EQUALS

GREATER_THAN

public static final TriggerVariableType GREATER_THAN

GREATER_THAN_OR_EQUALS

public static final TriggerVariableType GREATER_THAN_OR_EQUALS

LESS_THAN

public static final TriggerVariableType LESS_THAN

LESS_THAN_OR_EQUALS

public static final TriggerVariableType LESS_THAN_OR_EQUALS
Method Detail

values

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

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

valueOf

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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<TriggerVariableType>

parseString

public static TriggerVariableType parseString(java.lang.String string)
                                       throws java.lang.IllegalArgumentException
Throws:
java.lang.IllegalArgumentException


Copyright © 2001-2009 Cluster Resources, Inc. All Rights Reserved.