Groovy Documentation

com.ace.mws.vcs
[Groovy] Enum VirtualContainerFlag

java.lang.Object
  com.ace.mws.vcs.VirtualContainerFlag

enum VirtualContainerFlag

This enumeration specifies the flag types of a virtual container.


Enum Constant Summary
DELETING

Virtual container has started removal process -- might be waiting on workflows, etc. to finish.

DESTROYOBJECTS

Destroy reservations, jobs, and virtual machines in virtual container when the virtual container is destroyed.

DESTROYWHENEMPTY

Destroy virtual container when it contains no objects.

HASSTARTED

Virtual container has jobs that have started -- workflows only.

HOLDJOBS

Virtual container will place a hold on jobs that are submitted to it while this flag is set .

WORKFLOW

Virtual container for a workflow -- maximum of one workflow virtual container per workflow.

 
Method Summary
static VirtualContainerFlag parseString(String string)

VirtualContainerFlag valueOf(String name)

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

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

DELETING

VirtualContainerFlag DELETING
Virtual container has started removal process -- might be waiting on workflows, etc. to finish.


DESTROYOBJECTS

VirtualContainerFlag DESTROYOBJECTS
Destroy reservations, jobs, and virtual machines in virtual container when the virtual container is destroyed.


DESTROYWHENEMPTY

VirtualContainerFlag DESTROYWHENEMPTY
Destroy virtual container when it contains no objects.


HASSTARTED

VirtualContainerFlag HASSTARTED
Virtual container has jobs that have started -- workflows only.


HOLDJOBS

VirtualContainerFlag HOLDJOBS
Virtual container will place a hold on jobs that are submitted to it while this flag is set .


WORKFLOW

VirtualContainerFlag WORKFLOW
Virtual container for a workflow -- maximum of one workflow virtual container per workflow.


 
Method Detail

parseString

static VirtualContainerFlag parseString(String string)


valueOf

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


values

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


 

Groovy Documentation