public enum SequenceTriggerType extends java.lang.Enum<SequenceTriggerType> implements java.io.Serializable
| Enum Constant and Description |
|---|
ExecutionCount
Indicates that the sequence will run for the number of
times specified in the ExecutionCount parameter.
|
None
Indicates that there is no stop trigger; the sequence runs
indefinitely.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static SequenceTriggerType |
valueOf(int sequenceTriggerTypeValue) |
static SequenceTriggerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SequenceTriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceTriggerType None
public static final SequenceTriggerType ExecutionCount
public static SequenceTriggerType[] values()
for (SequenceTriggerType c : SequenceTriggerType.values()) System.out.println(c);
public static SequenceTriggerType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static SequenceTriggerType valueOf(int sequenceTriggerTypeValue)
sequenceTriggerTypeValue - integer valuepublic int getValue()