public enum DeliveryMode extends Enum<DeliveryMode>
| Enum Constant and Description |
|---|
PERSISTENT
Messages marked as 'persistent' that are delivered to 'durable' queues will be logged to disk.
|
TRANSIENT
No logging for the delivered message is performed.
|
| Modifier and Type | Method and Description |
|---|---|
static DeliveryMode |
fromCode(Integer code) |
Integer |
getCode() |
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 TRANSIENT
public static final DeliveryMode PERSISTENT
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 nullpublic Integer getCode()
public static DeliveryMode fromCode(Integer code)
Copyright © 2023 MuleSoft, Inc.. All rights reserved.