public enum DeliveryModeType extends Enum<DeliveryModeType>
Java class for deliveryModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="deliveryModeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PERSISTENT"/>
<enumeration value="NON_PERSISTENT"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NON_PERSISTENT |
PERSISTENT |
| Modifier and Type | Method and Description |
|---|---|
static DeliveryModeType |
fromValue(String v) |
String |
value() |
static DeliveryModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryModeType PERSISTENT
public static final DeliveryModeType NON_PERSISTENT
public static DeliveryModeType[] values()
for (DeliveryModeType c : DeliveryModeType.values()) System.out.println(c);
public static DeliveryModeType 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 nullpublic String value()
public static DeliveryModeType fromValue(String v)
Apache CXF