OCSEPICS
Enum OCSEPICSConsts.OCSActionStatesType

java.lang.Object
  extended by java.lang.Enum<OCSEPICSConsts.OCSActionStatesType>
      extended by OCSEPICS.OCSEPICSConsts.OCSActionStatesType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OCSEPICSConsts.OCSActionStatesType>
Enclosing class:
OCSEPICSConsts

public static enum OCSEPICSConsts.OCSActionStatesType
extends java.lang.Enum<OCSEPICSConsts.OCSActionStatesType>

This enumeration reflects the states that an EPICS action can be used to model the states of an EPICS action


Enum Constant Summary
ACTIVE
           
COMMAND_ACCEPTED
           
COMMAND_PROCESSING
           
COMPLETED
           
INACTIVE
           
TIMED_OUT
           
UNINITIALISED
           
 
Method Summary
static OCSEPICSConsts.OCSActionStatesType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OCSEPICSConsts.OCSActionStatesType[] 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

UNINITIALISED

public static final OCSEPICSConsts.OCSActionStatesType UNINITIALISED

INACTIVE

public static final OCSEPICSConsts.OCSActionStatesType INACTIVE

COMMAND_PROCESSING

public static final OCSEPICSConsts.OCSActionStatesType COMMAND_PROCESSING

COMMAND_ACCEPTED

public static final OCSEPICSConsts.OCSActionStatesType COMMAND_ACCEPTED

ACTIVE

public static final OCSEPICSConsts.OCSActionStatesType ACTIVE

TIMED_OUT

public static final OCSEPICSConsts.OCSActionStatesType TIMED_OUT

COMPLETED

public static final OCSEPICSConsts.OCSActionStatesType COMPLETED
Method Detail

values

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

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

valueOf

public static OCSEPICSConsts.OCSActionStatesType 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