public enum StepType extends Enum<StepType>
Step
implementations that are known to the system.Enum Constant and Description |
---|
FLOW_STEP
|
JOB_STEP
|
PARTITION_STEP
|
TASKLET_STEP
|
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
public static final StepType FLOW_STEP
public static final StepType JOB_STEP
public static final StepType PARTITION_STEP
public 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 String getClassName()
public String getDisplayName()
Copyright © 2015. All rights reserved.