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