
public static enum MapSnapshot.Status extends Enum<MapSnapshot.Status>
| Enum Constant and Description |
|---|
CANVAS_OK |
NOTHING |
PAINTING |
STARTED |
TILES_OK |
| Modifier and Type | Method and Description |
|---|---|
static MapSnapshot.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapSnapshot.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapSnapshot.Status NOTHING
public static final MapSnapshot.Status STARTED
public static final MapSnapshot.Status TILES_OK
public static final MapSnapshot.Status PAINTING
public static final MapSnapshot.Status CANVAS_OK
public static MapSnapshot.Status[] values()
for (MapSnapshot.Status c : MapSnapshot.Status.values()) System.out.println(c);
public static MapSnapshot.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null