public static enum AmqpClient.ReadyState extends Enum<AmqpClient.ReadyState>
Enum Constant and Description |
---|
CLOSED |
CONNECTING |
OPEN |
Modifier and Type | Method and Description |
---|---|
static AmqpClient.ReadyState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmqpClient.ReadyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpClient.ReadyState CONNECTING
public static final AmqpClient.ReadyState OPEN
public static final AmqpClient.ReadyState CLOSED
public static AmqpClient.ReadyState[] values()
for (AmqpClient.ReadyState c : AmqpClient.ReadyState.values()) System.out.println(c);
public static AmqpClient.ReadyState 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 © 2014. All Rights Reserved.