public static enum MapDataCache.ChunkState extends java.lang.Enum<MapDataCache.ChunkState>
Enum Constant and Description |
---|
CACHED |
FILE_LOADING |
FILE_SAVING |
LOADING |
NONE |
PROCESSING |
QUEUED |
WAITING_FOR_PROCESSING |
Modifier and Type | Method and Description |
---|---|
static MapDataCache.ChunkState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapDataCache.ChunkState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapDataCache.ChunkState NONE
public static final MapDataCache.ChunkState QUEUED
public static final MapDataCache.ChunkState LOADING
public static final MapDataCache.ChunkState WAITING_FOR_PROCESSING
public static final MapDataCache.ChunkState PROCESSING
public static final MapDataCache.ChunkState FILE_LOADING
public static final MapDataCache.ChunkState FILE_SAVING
public static final MapDataCache.ChunkState CACHED
public static MapDataCache.ChunkState[] values()
for (MapDataCache.ChunkState c : MapDataCache.ChunkState.values()) System.out.println(c);
public static MapDataCache.ChunkState 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