public enum StepType extends Enum<StepType>
Step implementations
that are known to the system.| 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(String className) |
String |
getClassName() |
String |
getDisplayName() |
static StepType |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static StepType fromClassName(String className)
className - the fully qualified name of the
Step implementationUNKNOWNpublic String getClassName()
public String getDisplayName()
Copyright © 2021 Pivotal Software, Inc.. All rights reserved.