public enum DeliveryMode extends Enum<DeliveryMode>
NON_PERSISTENTPERSISTENTDIRECT| Enum Constant and Description | 
|---|
| DIRECTThis mode provides at-most-once message delivery. | 
| NON_PERSISTENTThis mode is functionally the same as Persistent. | 
| PERSISTENTThis mode provides once-and-only-once message delivery. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DeliveryMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DeliveryMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DeliveryMode PERSISTENT
public static final DeliveryMode NON_PERSISTENT
public static final DeliveryMode DIRECT
public static DeliveryMode[] values()
for (DeliveryMode c : DeliveryMode.values()) System.out.println(c);
public static DeliveryMode 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 nullCopyright 2004-2025 Solace Corporation. All rights reserved.