public static enum ExecutionEnums.StepStatus extends Enum<ExecutionEnums.StepStatus>
Enum Constant and Description |
---|
CANCELED |
COMPLETED |
ERROR |
PAUSED |
RUNNING |
Modifier and Type | Method and Description |
---|---|
static ExecutionEnums.StepStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionEnums.StepStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionEnums.StepStatus RUNNING
public static final ExecutionEnums.StepStatus COMPLETED
public static final ExecutionEnums.StepStatus ERROR
public static final ExecutionEnums.StepStatus PAUSED
public static final ExecutionEnums.StepStatus CANCELED
public static ExecutionEnums.StepStatus[] values()
for (ExecutionEnums.StepStatus c : ExecutionEnums.StepStatus.values()) System.out.println(c);
public static ExecutionEnums.StepStatus 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 nullCopyright © 2004-2016. All Rights Reserved.