public enum BPELVersion extends Enum<BPELVersion>
Enum Constant and Description |
---|
BPEL4WS_1_1
BPEL4WS1.1を表す。
|
UNKNOWN
不明な場合を表す。
|
WSBPEL_2_0
WSBPEL2.0を表す。
|
Modifier and Type | Method and Description |
---|---|
static BPELVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BPELVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BPELVersion BPEL4WS_1_1
public static final BPELVersion WSBPEL_2_0
public static final BPELVersion UNKNOWN
public static BPELVersion[] values()
for (BPELVersion c : BPELVersion.values()) System.out.println(c);
public static BPELVersion 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 null