Groovy Documentation

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

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

enum JobQueueStatus

Enum Constant Summary
active

A job is actively running in a queue.

blocked

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

completed

A job has completed running.

eligible

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

 
Method Summary
JobQueueStatus valueOf(String name)

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

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

JobQueueStatus active
A job is actively running in a queue.


blocked

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


completed

JobQueueStatus completed
A job has completed running.


eligible

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


 
Method Detail

valueOf

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


values

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


 

Groovy Documentation