public static enum ProcessFlowGeneral.DeploymentDependency extends java.lang.Enum<ProcessFlowGeneral.DeploymentDependency>
Enum Constant and Description |
---|
NA
n/a.
|
PARALLEL
Parallel.
|
SERIAL
Serial.
|
Modifier and Type | Method and Description |
---|---|
static ProcessFlowGeneral.DeploymentDependency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessFlowGeneral.DeploymentDependency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessFlowGeneral.DeploymentDependency NA
public static final ProcessFlowGeneral.DeploymentDependency PARALLEL
public static final ProcessFlowGeneral.DeploymentDependency SERIAL
public static ProcessFlowGeneral.DeploymentDependency[] values()
for (ProcessFlowGeneral.DeploymentDependency c : ProcessFlowGeneral.DeploymentDependency.values()) System.out.println(c);
public static ProcessFlowGeneral.DeploymentDependency 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 null