Groovy Documentation

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

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

enum JobState

Enum Constant Summary
Allocating

Resources are selected and are being prepared for job.

BatchHold

Job has a batch hold in place.

Blocked

Completed

Job successfully completed execution.

Deferred

Job is temporarily blocked.

Hold

Job is blocked by resource manager hold.

Idle

Eligible according to all resource manager constraints.

Lost

NotQueued

Job is not eligible for execution.

NotRun

Removed

Job was canceled before executing.

Running

Job is executing.

Staged

All staging prerequisites are satisfied - waiting for remote resource manager to start.

Staging

Staging of input/output data is currently underway.

Starting

Job is launching, executing prolog.

SubmitErr

Suspended

SystemHold

Job has a system hold in place.

Unknown

UserHold

Job has a user hold in place.

Vacated

Job was canceled after partial execution.

 
Method Summary
static JobState parse(String string)

JobState valueOf(String name)

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

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

JobState Allocating
Resources are selected and are being prepared for job.


BatchHold

JobState BatchHold
Job has a batch hold in place.


Blocked

JobState Blocked


Completed

JobState Completed
Job successfully completed execution.


Deferred

JobState Deferred
Job is temporarily blocked.


Hold

JobState Hold
Job is blocked by resource manager hold.


Idle

JobState Idle
Eligible according to all resource manager constraints.


Lost

JobState Lost


NotQueued

JobState NotQueued
Job is not eligible for execution.


NotRun

JobState NotRun


Removed

JobState Removed
Job was canceled before executing.


Running

JobState Running
Job is executing.


Staged

JobState Staged
All staging prerequisites are satisfied - waiting for remote resource manager to start.


Staging

JobState Staging
Staging of input/output data is currently underway.


Starting

JobState Starting
Job is launching, executing prolog.


SubmitErr

JobState SubmitErr


Suspended

JobState Suspended


SystemHold

JobState SystemHold
Job has a system hold in place.


Unknown

JobState Unknown


UserHold

JobState UserHold
Job has a user hold in place.


Vacated

JobState Vacated
Job was canceled after partial execution.


 
Method Detail

parse

static JobState parse(String string)


valueOf

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


values

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


 

Groovy Documentation