public enum DeliveryOption extends java.lang.Enum<DeliveryOption>
Enum Constant | Description |
---|---|
All |
Delivers message to all registered subscribers, if no subscriber has been registered,
it will return without any failure acknowledgment.
|
Any |
Delivers message to any one of the registered subscribers.
|
Modifier and Type | Method | Description |
---|---|---|
static DeliveryOption |
forValue(int value) |
Retrieves the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.
|
static DeliveryOption |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DeliveryOption[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryOption All
public static final DeliveryOption Any
public static DeliveryOption[] values()
for (DeliveryOption c : DeliveryOption.values()) System.out.println(c);
public static DeliveryOption 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 nullpublic static DeliveryOption forValue(int value)
value
- Enum constant index.public int getValue()