Package org.pentaho.di.trans.step
Enum Class BaseStepData.StepExecutionStatus
java.lang.Object
java.lang.Enum<BaseStepData.StepExecutionStatus>
org.pentaho.di.trans.step.BaseStepData.StepExecutionStatus
- All Implemented Interfaces:
Serializable
,Comparable<BaseStepData.StepExecutionStatus>
,Constable
- Enclosing class:
- BaseStepData
The Enum StepExecutionStatus.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe status disposed.The status empty.The status finished.The status halted.The status halting.The status idle.The status init.The status paused.The status running.The status stopped. -
Method Summary
Modifier and TypeMethodDescriptionGets the description.toString()
Returns the enum constant of this class with the specified name.static BaseStepData.StepExecutionStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STATUS_EMPTY
The status empty. -
STATUS_INIT
The status init. -
STATUS_RUNNING
The status running. -
STATUS_IDLE
The status idle. -
STATUS_FINISHED
The status finished. -
STATUS_STOPPED
The status stopped. -
STATUS_DISPOSED
The status disposed. -
STATUS_HALTED
The status halted. -
STATUS_PAUSED
The status paused. -
STATUS_HALTING
The status halting.
-
-
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
-
getDescription
Gets the description.- Returns:
- the description
-
toString
- Overrides:
toString
in classEnum<BaseStepData.StepExecutionStatus>
-