public static enum ProcessFlowDescriptor.FlowStatus extends Enum<ProcessFlowDescriptor.FlowStatus>
Enum Constant and Description |
---|
ACTIVE
The process flow has been started and is active.
|
COMPLETED
The process flow is completed.
|
NOT_STARTED
The process flow is not started.
|
SUSPENDED
The process flow has been started but is suspended.
|
Modifier and Type | Method and Description |
---|---|
static ProcessFlowDescriptor.FlowStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessFlowDescriptor.FlowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessFlowDescriptor.FlowStatus NOT_STARTED
public static final ProcessFlowDescriptor.FlowStatus ACTIVE
public static final ProcessFlowDescriptor.FlowStatus SUSPENDED
public static final ProcessFlowDescriptor.FlowStatus COMPLETED
public static ProcessFlowDescriptor.FlowStatus[] values()
for (ProcessFlowDescriptor.FlowStatus c : ProcessFlowDescriptor.FlowStatus.values()) System.out.println(c);
public static ProcessFlowDescriptor.FlowStatus 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 (c) 2020, SAS Institute Inc., Cary, NC, USA