Groovy Documentation

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

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

enum JobDependencyType

Represents the type of a job dependency. For now, only the "set" type is supported.


Enum Constant Summary
set

Job will wait until a variable on a Moab object is set before starting.

 
Method Summary
static JobDependencyType parse(String string)

JobDependencyType valueOf(String name)

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

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

set

JobDependencyType set
Job will wait until a variable on a Moab object is set before starting.


 
Method Detail

parse

static JobDependencyType parse(String string)


valueOf

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


values

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


 

Groovy Documentation