|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | PROPERTY | METHOD | DETAIL: ENUM CONSTANTS | FIELD | PROPERTY | METHOD | |||||||
java.lang.Objectcom.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 |
|---|
QueueStatus ACTIVE
QueueStatus BLOCKED
QueueStatus COMPLETED
QueueStatus ELIGIBLE
QueueStatus NONE
| Property Detail |
|---|
static def list
String str
| Constructor Detail |
|---|
QueueStatus(String str)
| Method Detail |
|---|
static QueueStatus parseString(String string)
@Override String toString()
QueueStatus valueOf(String name)
QueueStatus[] values()
Groovy Documentation