Groovy Documentation

com.ace.mws.nodes
[Groovy] Enum NodeFlag

java.lang.Object
  com.ace.mws.nodes.NodeFlag

enum NodeFlag

Represents the various flags for nodes.


Enum Constant Summary
GLOBAL_VARS

Node has variables available for triggers.

NONE

NO_VM_MIGRATIONS

Node is excluded from all virtual machine migration decisions.

 
Property Summary
String moabLabel

 
Constructor Summary
private NodeFlag(String moabLabel)

 
Method Summary
static NodeFlag parseMoabLabel(String string)

Parses a string and translates it into a NodeFlag enum value.

String toMoabString()

NodeFlag valueOf(String name)

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

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

GLOBAL_VARS

NodeFlag GLOBAL_VARS
Node has variables available for triggers.


NONE

NodeFlag NONE


NO_VM_MIGRATIONS

NodeFlag NO_VM_MIGRATIONS
Node is excluded from all virtual machine migration decisions.


 
Property Detail

moabLabel

String moabLabel


 
Constructor Detail

NodeFlag

private NodeFlag(String moabLabel)


 
Method Detail

parseMoabLabel

static NodeFlag parseMoabLabel(String string)
Parses a string and translates it into a NodeFlag enum value.
Parameters:
string - the string to parse.
Returns:
the corresponding NodeFlag object.


toMoabString

String toMoabString()


valueOf

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


values

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


 

Groovy Documentation