@PublicAPI public enum FlowActionType extends Enum<FlowActionType>
Enum Constant and Description |
---|
CONTINUE
Fallback case: no action is performed
|
IF
Exclusive branching with optional join
|
LOOP
Loop back in the flow to a previously executed task
|
REPLICATE
Parallel split with join
|
Modifier and Type | Method and Description |
---|---|
static FlowActionType |
parse(String str)
Parses a string containing the textual representation of a FlowActionType
|
String |
toString() |
static FlowActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowActionType CONTINUE
public static final FlowActionType IF
public static final FlowActionType REPLICATE
public static final FlowActionType LOOP
public static FlowActionType[] values()
for (FlowActionType c : FlowActionType.values()) System.out.println(c);
public static FlowActionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<FlowActionType>
public static FlowActionType parse(String str)
str
- the string to parse