public static enum Process.Version extends java.lang.Enum<Process.Version>
| Enum Constant and Description |
|---|
BPEL11 |
BPEL20 |
BPEL20_DRAFT |
| Modifier and Type | Method and Description |
|---|---|
static Process.Version |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Process.Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Process.Version BPEL11
public static final Process.Version BPEL20_DRAFT
public static final Process.Version BPEL20
public static Process.Version[] values()
for (Process.Version c : Process.Version.values()) System.out.println(c);
public static Process.Version 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