public static enum BCLibConfig.ChunkLoaderType extends java.lang.Enum<BCLibConfig.ChunkLoaderType>
Enum Constant and Description |
---|
AUTO
Automatic chunkloading is ENABLED when using the integrated server (singleplayer + LAN), and DISABLED when
using a dedicated server.
|
OFF
Automatic chunkloading is DISABLED.
|
ON
Automatic chunkloading is ENABLED.
|
Modifier and Type | Method and Description |
---|---|
static BCLibConfig.ChunkLoaderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BCLibConfig.ChunkLoaderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BCLibConfig.ChunkLoaderType ON
public static final BCLibConfig.ChunkLoaderType AUTO
public static final BCLibConfig.ChunkLoaderType OFF
public static BCLibConfig.ChunkLoaderType[] values()
for (BCLibConfig.ChunkLoaderType c : BCLibConfig.ChunkLoaderType.values()) System.out.println(c);
public static BCLibConfig.ChunkLoaderType 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