public static enum MiniChunkGraph.ChunkType extends java.lang.Enum<MiniChunkGraph.ChunkType>
Enum Constant and Description |
---|
COMPLETELY_FILLED |
COMPLETELY_FREE |
MULTIPLE_GRAPHS |
SINGLE_GRAPH |
Modifier and Type | Method and Description |
---|---|
static MiniChunkGraph.ChunkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MiniChunkGraph.ChunkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MiniChunkGraph.ChunkType COMPLETELY_FREE
public static final MiniChunkGraph.ChunkType SINGLE_GRAPH
public static final MiniChunkGraph.ChunkType MULTIPLE_GRAPHS
public static final MiniChunkGraph.ChunkType COMPLETELY_FILLED
public static MiniChunkGraph.ChunkType[] values()
for (MiniChunkGraph.ChunkType c : MiniChunkGraph.ChunkType.values()) System.out.println(c);
public static MiniChunkGraph.ChunkType 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