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