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