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