Groovy Documentation

com.ace.mws.pendingactions
[Groovy] Enum PendingActionState

java.lang.Object
  com.ace.mws.pendingactions.PendingActionState

enum PendingActionState

This enumeration lists all the states a pending action can be in.


Enum Constant Summary
ALLOCATING

BATCHHOLD

BLOCKED

COMPLETED

DEFERRED

HOLD

IDLE

LOST

NONE

NOTQUEUED

NOTRUN

REMOVED

RUNNING

STAGED

STAGING

STARTING

SUBMITERR

SUSPENDED

SYSTEMHOLD

UNKNOWN

USERHOLD

VACATED

 
Method Summary
static PendingActionState parseString(String string)

Attempts to parse a string and convert it into a corresponding PendingActionState enum value.

PendingActionState valueOf(String name)

Returns the enum constant of this type with the specified name.

PendingActionState[] values()

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

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Enum Constant Detail

ALLOCATING

PendingActionState ALLOCATING


BATCHHOLD

PendingActionState BATCHHOLD


BLOCKED

PendingActionState BLOCKED


COMPLETED

PendingActionState COMPLETED


DEFERRED

PendingActionState DEFERRED


HOLD

PendingActionState HOLD


IDLE

PendingActionState IDLE


LOST

PendingActionState LOST


NONE

PendingActionState NONE


NOTQUEUED

PendingActionState NOTQUEUED


NOTRUN

PendingActionState NOTRUN


REMOVED

PendingActionState REMOVED


RUNNING

PendingActionState RUNNING


STAGED

PendingActionState STAGED


STAGING

PendingActionState STAGING


STARTING

PendingActionState STARTING


SUBMITERR

PendingActionState SUBMITERR


SUSPENDED

PendingActionState SUSPENDED


SYSTEMHOLD

PendingActionState SYSTEMHOLD


UNKNOWN

PendingActionState UNKNOWN


USERHOLD

PendingActionState USERHOLD


VACATED

PendingActionState VACATED


 
Method Detail

parseString

static PendingActionState parseString(String string)
Attempts to parse a string and convert it into a corresponding PendingActionState enum value.
throws:
ParseException thrown if the string cannot be parsed into a respective PendingActionState.
Parameters:
string - the string to parse into a corresponding PendingActionState enum value.
Returns:
the corresponding PendingActionState enum value.


valueOf

PendingActionState valueOf(String name)
Returns the enum constant of this type with the specified name.


values

PendingActionState[] values()
Returns an array containing the constants of this enum type, in the order they are declared.


 

Groovy Documentation