Groovy Documentation

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

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

enum QueueStatus

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
QueueStatus(String str)

 
Method Summary
static QueueStatus parseString(String string)

String toString()

QueueStatus valueOf(String name)

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

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

QueueStatus ACTIVE
A job is actively running in a queue.


BLOCKED

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


COMPLETED

QueueStatus COMPLETED
A job has completed running.


ELIGIBLE

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


NONE

QueueStatus NONE
A job's state type is unknown.


 
Property Detail

list

static def list


str

String str


 
Constructor Detail

QueueStatus

QueueStatus(String str)


 
Method Detail

parseString

static QueueStatus parseString(String string)


toString

@Override
String toString()


valueOf

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


values

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


 

Groovy Documentation