Version: 1.1.1

org.inb.lsae
Enum StateChanged.STATE

java.lang.Object
  extended by java.lang.Enum<StateChanged.STATE>
      extended by org.inb.lsae.StateChanged.STATE
All Implemented Interfaces:
Serializable, Comparable<StateChanged.STATE>
Enclosing class:
StateChanged

public static enum StateChanged.STATE
extends Enum<StateChanged.STATE>


Enum Constant Summary
completed
           
created
           
running
           
terminated_by_error
           
terminated_by_request
           
 
Method Summary
static StateChanged.STATE valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StateChanged.STATE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

created

public static final StateChanged.STATE created

running

public static final StateChanged.STATE running

completed

public static final StateChanged.STATE completed

terminated_by_request

public static final StateChanged.STATE terminated_by_request

terminated_by_error

public static final StateChanged.STATE terminated_by_error
Method Detail

values

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

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

valueOf

public static StateChanged.STATE 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

Version: 1.1.1

Submit a bug or feature
Generated: Sat May 29 04:26:35 EDT 2010