Groovy Documentation

com.ace.mws.jobs
[Groovy] Enum JobQueueStatusVersion1

java.lang.Object
  com.ace.mws.jobs.JobQueueStatusVersion1

enum JobQueueStatusVersion1

This enumeration describes every queue status to which a job state can belong.


Enum Constant Summary
ACTIVE

A job is actively running in a queue.

BLOCKED

A job has been blocked because of policy violation or resource requirements cannot be met.

COMPLETED

A job has completed running.

ELIGIBLE

A job is eligible to run, but has not started yet.

NONE

A job's state type is unknown.

 
Property Summary
static def list

String str

 
Constructor Summary
JobQueueStatusVersion1(String str)

 
Method Summary
static JobQueueStatusVersion1 parseString(String string)

String toString()

JobQueueStatusVersion1 valueOf(String name)

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

JobQueueStatusVersion1[] 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

ACTIVE

JobQueueStatusVersion1 ACTIVE
A job is actively running in a queue.


BLOCKED

JobQueueStatusVersion1 BLOCKED
A job has been blocked because of policy violation or resource requirements cannot be met.


COMPLETED

JobQueueStatusVersion1 COMPLETED
A job has completed running.


ELIGIBLE

JobQueueStatusVersion1 ELIGIBLE
A job is eligible to run, but has not started yet.


NONE

JobQueueStatusVersion1 NONE
A job's state type is unknown.


 
Property Detail

list

static def list


str

String str


 
Constructor Detail

JobQueueStatusVersion1

JobQueueStatusVersion1(String str)


 
Method Detail

parseString

static JobQueueStatusVersion1 parseString(String string)


toString

@Override
String toString()


valueOf

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


values

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


 

Groovy Documentation