Enum Class EPDataFlowState
- All Implemented Interfaces:
Serializable
,Comparable<EPDataFlowState>
,Constable
Data flow instance states.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCancelled means the data flow instance was cancelled.Complete means the data flow instance completed.Start state: the state a data flow instance is in when it gets instantiated.Running means the data flow instance is currently executing. -
Method Summary
Modifier and TypeMethodDescriptionstatic EPDataFlowState
Returns the enum constant of this class with the specified name.static EPDataFlowState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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. -
COMPLETE
Complete means the data flow instance completed. -
CANCELLED
Cancelled means the data flow instance was cancelled.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-