public static enum Plugin.State extends Enum<Plugin.State>
| Enum Constant and Description |
|---|
ENABLED_EXPLICITLY |
ENABLED_IMPLICITLY |
NOT_ENABLED |
NOT_RUNNING |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<Plugin.State> |
fromString(String string)
Parses a string as given by the command line output from
rabbitmq-plugins list for the characters in
between brackets. |
static Plugin.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin.State ENABLED_EXPLICITLY
public static final Plugin.State ENABLED_IMPLICITLY
public static final Plugin.State NOT_ENABLED
public static final Plugin.State RUNNING
public static final Plugin.State NOT_RUNNING
public static Plugin.State[] values()
for (Plugin.State c : Plugin.State.values()) System.out.println(c);
public static Plugin.State 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 static EnumSet<Plugin.State> fromString(String string)
rabbitmq-plugins list for the characters in
between brackets.Copyright © 2016–2017. All rights reserved.