public static enum BlockingComponent.State extends java.lang.Enum<BlockingComponent.State>
Enum Constant and Description |
---|
BLOCKED
Simple locked state.
|
UNBLOCKED
Components are not blocked, input behaves as normal.
|
Modifier and Type | Method and Description |
---|---|
static BlockingComponent.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockingComponent.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockingComponent.State UNBLOCKED
public static final BlockingComponent.State BLOCKED
public static BlockingComponent.State[] values()
for (BlockingComponent.State c : BlockingComponent.State.values()) System.out.println(c);
public static BlockingComponent.State 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