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