public static enum RabbitHandler.Status extends java.lang.Enum<RabbitHandler.Status>
Enum Constant and Description |
---|
CLOSED |
INFO_SET |
INIT |
NOT_READY |
READY |
Modifier and Type | Method and Description |
---|---|
static RabbitHandler.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RabbitHandler.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RabbitHandler.Status READY
public static final RabbitHandler.Status INIT
public static final RabbitHandler.Status NOT_READY
public static final RabbitHandler.Status CLOSED
public static final RabbitHandler.Status INFO_SET
public static RabbitHandler.Status[] values()
for (RabbitHandler.Status c : RabbitHandler.Status.values()) System.out.println(c);
public static RabbitHandler.Status 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 null