public enum EPDataFlowState extends Enum<EPDataFlowState>
Enum Constant and Description |
---|
CANCELLED
Cancelled means the data flow instance was cancelled.
|
COMPLETE
Complete means the data flow instance completed.
|
INSTANTIATED
Start state: the state a data flow instance is in when it gets instantiated.
|
RUNNING
Running means the data flow instance is currently executing.
|
Modifier and Type | Method and Description |
---|---|
static EPDataFlowState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EPDataFlowState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPDataFlowState INSTANTIATED
public static final EPDataFlowState RUNNING
public static final EPDataFlowState COMPLETE
public static final EPDataFlowState CANCELLED
public static EPDataFlowState[] values()
for (EPDataFlowState c : EPDataFlowState.values()) System.out.println(c);
public static EPDataFlowState 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