Enum Constant and Description |
---|
All
All messages with a sequence number less than the message acked are also acknowledged.
|
Explicit
Each message must be acknowledged individually.
|
None
Messages are acknowledged as soon as the server sends them.
|
Modifier and Type | Method and Description |
---|---|
static AckPolicy |
get(java.lang.String value) |
java.lang.String |
toString() |
static AckPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AckPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AckPolicy None
public static final AckPolicy All
public static final AckPolicy Explicit
public static AckPolicy[] values()
for (AckPolicy c : AckPolicy.values()) System.out.println(c);
public static AckPolicy 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 java.lang.String toString()
toString
in class java.lang.Enum<AckPolicy>
public static AckPolicy get(java.lang.String value)