public static enum Cell.State extends java.lang.Enum<Cell.State>
Enum Constant and Description |
---|
DISABLED
The Cell is disabled (grayed out).
|
INVALID
The Cell is invalid (invisible).
|
SELECTED
The Cell is selected.
|
UNSELECTED
The Cell is not selected.
|
Modifier and Type | Method and Description |
---|---|
static Cell.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cell.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cell.State UNSELECTED
public static final Cell.State SELECTED
public static final Cell.State DISABLED
public static final Cell.State INVALID
public static Cell.State[] values()
for (Cell.State c : Cell.State.values()) System.out.println(c);
public static Cell.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