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