public enum ControllerState extends java.lang.Enum<ControllerState>
| Enum Constant and Description |
|---|
CONTROLLER_CONFLICT
Controller rules not followed, lock up while booting.
|
CONTROLLER_ONLINE
Controller rules followed, booting enabled.
|
NO_CONTROLLER
No controller blocks are present in the network.
|
| Modifier and Type | Method and Description |
|---|---|
static ControllerState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControllerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControllerState NO_CONTROLLER
public static final ControllerState CONTROLLER_ONLINE
public static final ControllerState CONTROLLER_CONFLICT
public static ControllerState[] values()
for (ControllerState c : ControllerState.values()) System.out.println(c);
public static ControllerState 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