public enum AcknowledgementMode extends Enum<AcknowledgementMode>
Enum Constant and Description |
---|
ACKNOWLEDGE |
REQUEUE_FALSE |
REQUEUE_TRUE |
Modifier and Type | Method and Description |
---|---|
static AcknowledgementMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcknowledgementMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcknowledgementMode ACKNOWLEDGE
public static final AcknowledgementMode REQUEUE_FALSE
public static final AcknowledgementMode REQUEUE_TRUE
public static AcknowledgementMode[] values()
for (AcknowledgementMode c : AcknowledgementMode.values()) System.out.println(c);
public static AcknowledgementMode 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 © 2020 WSO2. All rights reserved.