public static enum JMSFacade.AcknowledgeMode extends Enum<JMSFacade.AcknowledgeMode> implements DocumentedEnum
Enum Constant and Description |
---|
AUTO_ACKNOWLEDGE
auto or auto_acknowledge: Specifies that the session is to automatically acknowledge consumer receipt of
messages when message processing is complete.
|
CLIENT_ACKNOWLEDGE
client or client_acknowledge: Specifies that the consumer is to acknowledge all messages delivered in this session.
|
DUPS_OK_ACKNOWLEDGE
dups or dups_ok_acknowledge: Specifies that the session is to "lazily" acknowledge the
delivery of messages to the consumer.
|
NOT_SET |
Modifier and Type | Method and Description |
---|---|
static JMSFacade.AcknowledgeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JMSFacade.AcknowledgeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getLabel, name
public static final JMSFacade.AcknowledgeMode NOT_SET
public static final JMSFacade.AcknowledgeMode AUTO_ACKNOWLEDGE
public static final JMSFacade.AcknowledgeMode CLIENT_ACKNOWLEDGE
public static final JMSFacade.AcknowledgeMode DUPS_OK_ACKNOWLEDGE
public static JMSFacade.AcknowledgeMode[] values()
for (JMSFacade.AcknowledgeMode c : JMSFacade.AcknowledgeMode.values()) System.out.println(c);
public static JMSFacade.AcknowledgeMode 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 © 2023 Frank!Framework. All rights reserved.