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>
STATUS_EMPTY
public static final BaseStepData.StepExecutionStatus STATUS_EMPTY
STATUS_INIT
public static final BaseStepData.StepExecutionStatus STATUS_INIT
STATUS_RUNNING
public static final BaseStepData.StepExecutionStatus STATUS_RUNNING
STATUS_IDLE
public static final BaseStepData.StepExecutionStatus STATUS_IDLE
STATUS_FINISHED
public static final BaseStepData.StepExecutionStatus STATUS_FINISHED
STATUS_STOPPED
public static final BaseStepData.StepExecutionStatus STATUS_STOPPED
STATUS_DISPOSED
public static final BaseStepData.StepExecutionStatus STATUS_DISPOSED
STATUS_HALTED
public static final BaseStepData.StepExecutionStatus STATUS_HALTED
STATUS_PAUSED
public static final BaseStepData.StepExecutionStatus STATUS_PAUSED
STATUS_HALTING
public static final BaseStepData.StepExecutionStatus STATUS_HALTING
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 name
NullPointerException
- if the argument is null
getDescription
public String getDescription()
toString
public String toString()
- Overrides:
toString
in class Enum<BaseStepData.StepExecutionStatus>