public static enum FlowError.FlowErrorType extends Enum<FlowError.FlowErrorType>
Throwable.getMessage()
Enum Constant and Description |
---|
BLOCK
a BLOCK is invalid
|
IF
an IF action is invalid
|
LOOP
a LOOP action is invalid
|
NAME
the name of a task is invalid
|
RECURSION
infinite loop
|
REPLICATE
a REPLICATE action is invalid
|
UNREACHABLE
a task is unreachable in the flow
|
Modifier and Type | Method and Description |
---|---|
static FlowError.FlowErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowError.FlowErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowError.FlowErrorType IF
public static final FlowError.FlowErrorType REPLICATE
public static final FlowError.FlowErrorType LOOP
public static final FlowError.FlowErrorType BLOCK
public static final FlowError.FlowErrorType NAME
public static final FlowError.FlowErrorType UNREACHABLE
public static final FlowError.FlowErrorType RECURSION
public static FlowError.FlowErrorType[] values()
for (FlowError.FlowErrorType c : FlowError.FlowErrorType.values()) System.out.println(c);
public static FlowError.FlowErrorType 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 null