public static enum WorkflowJob.Status extends Enum<WorkflowJob.Status>
Enum Constant and Description |
---|
FAILED |
KILLED |
PREP |
RUNNING |
SUCCEEDED |
SUSPENDED |
Modifier and Type | Method and Description |
---|---|
static WorkflowJob.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowJob.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowJob.Status PREP
public static final WorkflowJob.Status RUNNING
public static final WorkflowJob.Status SUCCEEDED
public static final WorkflowJob.Status KILLED
public static final WorkflowJob.Status FAILED
public static final WorkflowJob.Status SUSPENDED
public static WorkflowJob.Status[] values()
for (WorkflowJob.Status c : WorkflowJob.Status.values()) System.out.println(c);
public static WorkflowJob.Status 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 © 2018 Apache Software Foundation. All rights reserved.