public static enum ProcessFlowSettings.ElseAction extends java.lang.Enum<ProcessFlowSettings.ElseAction>
| Enum Constant and Description |
|---|
ABORT
Abort.
|
BLOCK
Block.
|
BLOCK_ABORT
Block and abort.
|
SKIP
Skip.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessFlowSettings.ElseAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessFlowSettings.ElseAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessFlowSettings.ElseAction BLOCK
public static final ProcessFlowSettings.ElseAction SKIP
public static final ProcessFlowSettings.ElseAction BLOCK_ABORT
public static final ProcessFlowSettings.ElseAction ABORT
public static ProcessFlowSettings.ElseAction[] values()
for (ProcessFlowSettings.ElseAction c : ProcessFlowSettings.ElseAction.values()) System.out.println(c);
public static ProcessFlowSettings.ElseAction 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 null