public static enum Workflow.State extends java.lang.Enum<Workflow.State>
Enum Constant and Description |
---|
ABORTED
Workflow is aborted
|
COMPLETED
Workflow is completed
|
RUNNING
Workflow is running
|
SUSPENDED
Workflow is suspended
|
Modifier and Type | Method and Description |
---|---|
static Workflow.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Workflow.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Workflow.State RUNNING
public static final Workflow.State COMPLETED
public static final Workflow.State SUSPENDED
public static final Workflow.State ABORTED
public static Workflow.State[] values()
for (Workflow.State c : Workflow.State.values()) System.out.println(c);
public static Workflow.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2010 - 2020 Adobe. All Rights Reserved