public static enum ProcessFlowDescriptor.FlowStatus extends Enum<ProcessFlowDescriptor.FlowStatus>
Enum Constant and Description |
---|
ACTIVE |
COMPLETED |
NOT_STARTED |
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) 2019, SAS Institute Inc., Cary, NC, USA