| Enum Constant and Description |
|---|
FLOW_STEP
FlowStep |
JOB_STEP
JobStep |
PARTITION_STEP
PartitionStep |
TASKLET_STEP
TaskletStep |
UNKNOWN
Used when the type of step is unknown to the system.
|
| Modifier and Type | Method and Description |
|---|---|
static StepType |
fromClassName(java.lang.String className) |
java.lang.String |
getClassName() |
java.lang.String |
getDisplayName() |
static StepType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StepType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepType TASKLET_STEP
TaskletSteppublic static final StepType FLOW_STEP
FlowSteppublic static final StepType JOB_STEP
JobSteppublic static final StepType PARTITION_STEP
PartitionSteppublic static final StepType UNKNOWN
public static StepType[] values()
for (StepType c : StepType.values()) System.out.println(c);
public static StepType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static StepType fromClassName(java.lang.String className)
className - the fully qualified name of the Step implementationUNKNOWNpublic java.lang.String getClassName()
public java.lang.String getDisplayName()