|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | PROPERTY | METHOD | DETAIL: ENUM CONSTANTS | FIELD | PROPERTY | METHOD | |||||||
java.lang.Objectcom.ace.mws.triggers.TriggerFlag
enum TriggerFlag
This enumeration specifies a flag belonging to a trigger.
| Enum Constant Summary | |
|---|---|
ATTACH_ERROR
If the trigger outputs anything to stderr, Moab will attach this as a message to the trigger object. |
|
CHECKPOINT
Moab should always checkpoint this trigger. |
|
CLEANUP
If the trigger is still running when the parent object completes or is canceled, the trigger will be killed. |
|
GLOBAL_TRIGGER
Not sure what this is, but was returned by triggers with no flags. |
|
GLOBAL_VARS
The trigger will look in the name space of all nodes with the globalvars flag in addition to its own name space. |
|
INTERVAL
Trigger is periodic. |
|
MULTIFIRE
Trigger can fire multiple times. |
|
OBJECT_XML_STDIN
Trigger passes its parent's object XML information into the trigger's stdin. |
|
USER
The trigger will execute under the user ID of the object's owner. |
|
| Property Summary | |
|---|---|
String |
name
The name Moab recognizes for a trigger type |
| Constructor Summary | |
private TriggerFlag(String name)
|
|
| Method Summary | |
|---|---|
static TriggerFlag
|
parseString(String string)
Attempts to parse a string and convert it into a corresponding TriggerFlag enum value. |
TriggerFlag
|
valueOf(String name)
Returns the enum constant of this type with the specified name. |
TriggerFlag[]
|
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 |
|---|
TriggerFlag ATTACH_ERROR
TriggerFlag CHECKPOINT
TriggerFlag CLEANUP
TriggerFlag GLOBAL_TRIGGER
TriggerFlag GLOBAL_VARS
TriggerFlag INTERVAL
TriggerFlag MULTIFIRE
TriggerFlag OBJECT_XML_STDIN
TriggerFlag USER
| Property Detail |
|---|
String name
| Constructor Detail |
|---|
private TriggerFlag(String name)
| Method Detail |
|---|
static TriggerFlag parseString(String string)
string
- the string to parse into a corresponding TriggerFlag enum value.
TriggerFlag valueOf(String name)
TriggerFlag[] values()
Groovy Documentation