public static enum PipelineExecutorTask.Status extends Enum<PipelineExecutorTask.Status>
Enum Constant and Description |
---|
ERROR |
FINISHED |
RUNNING |
SCHEDULED |
STOPPED |
Modifier and Type | Method and Description |
---|---|
static PipelineExecutorTask.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipelineExecutorTask.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineExecutorTask.Status SCHEDULED
public static final PipelineExecutorTask.Status RUNNING
public static final PipelineExecutorTask.Status FINISHED
public static final PipelineExecutorTask.Status ERROR
public static final PipelineExecutorTask.Status STOPPED
public static PipelineExecutorTask.Status[] values()
for (PipelineExecutorTask.Status c : PipelineExecutorTask.Status.values()) System.out.println(c);
public static PipelineExecutorTask.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 © 2001–2020 JBoss by Red Hat. All rights reserved.