Package org.pentaho.di.trans.step
Enum BaseStepData.StepExecutionStatus
- java.lang.Object
-
- java.lang.Enum<BaseStepData.StepExecutionStatus>
-
- org.pentaho.di.trans.step.BaseStepData.StepExecutionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<BaseStepData.StepExecutionStatus>
- Enclosing class:
- BaseStepData
public static enum BaseStepData.StepExecutionStatus extends Enum<BaseStepData.StepExecutionStatus>
The Enum StepExecutionStatus.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description STATUS_DISPOSED
The status disposed.STATUS_EMPTY
The status empty.STATUS_FINISHED
The status finished.STATUS_HALTED
The status halted.STATUS_HALTING
The status halting.STATUS_IDLE
The status idle.STATUS_INIT
The status init.STATUS_PAUSED
The status paused.STATUS_RUNNING
The status running.STATUS_STOPPED
The status stopped.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Gets the description.String
toString()
static BaseStepData.StepExecutionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static BaseStepData.StepExecutionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATUS_EMPTY
public static final BaseStepData.StepExecutionStatus STATUS_EMPTY
The status empty.
-
STATUS_INIT
public static final BaseStepData.StepExecutionStatus STATUS_INIT
The status init.
-
STATUS_RUNNING
public static final BaseStepData.StepExecutionStatus STATUS_RUNNING
The status running.
-
STATUS_IDLE
public static final BaseStepData.StepExecutionStatus STATUS_IDLE
The status idle.
-
STATUS_FINISHED
public static final BaseStepData.StepExecutionStatus STATUS_FINISHED
The status finished.
-
STATUS_STOPPED
public static final BaseStepData.StepExecutionStatus STATUS_STOPPED
The status stopped.
-
STATUS_DISPOSED
public static final BaseStepData.StepExecutionStatus STATUS_DISPOSED
The status disposed.
-
STATUS_HALTED
public static final BaseStepData.StepExecutionStatus STATUS_HALTED
The status halted.
-
STATUS_PAUSED
public static final BaseStepData.StepExecutionStatus STATUS_PAUSED
The status paused.
-
STATUS_HALTING
public static final BaseStepData.StepExecutionStatus STATUS_HALTING
The status halting.
-
-
Method Detail
-
values
public static BaseStepData.StepExecutionStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BaseStepData.StepExecutionStatus c : BaseStepData.StepExecutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseStepData.StepExecutionStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDescription
public String getDescription()
Gets the description.- Returns:
- the description
-
toString
public String toString()
- Overrides:
toString
in classEnum<BaseStepData.StepExecutionStatus>
-
-