public static enum IChunkLoadingTile.LoadType extends java.lang.Enum<IChunkLoadingTile.LoadType>
Enum Constant and Description |
---|
HARD
If the value of
BCLibConfig.chunkLoadingType is equal to BCLibConfig.ChunkLoaderLevel.NONE then it won't
be loaded. |
SOFT
Softly attempt to chunkload this.
|
Modifier and Type | Method and Description |
---|---|
static IChunkLoadingTile.LoadType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IChunkLoadingTile.LoadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IChunkLoadingTile.LoadType SOFT
BCLibConfig.chunkLoadingType
is equal to
BCLibConfig.ChunkLoaderLevel.STRICT_TILES
or BCLibConfig.ChunkLoaderLevel.NONE
then it won't be loaded.public static final IChunkLoadingTile.LoadType HARD
BCLibConfig.chunkLoadingType
is equal to BCLibConfig.ChunkLoaderLevel.NONE
then it won't
be loaded. Generally this should only be enabled for machines that are designed to operate far from a players
territory, like a quarry or a pump.public static IChunkLoadingTile.LoadType[] values()
for (IChunkLoadingTile.LoadType c : IChunkLoadingTile.LoadType.values()) System.out.println(c);
public static IChunkLoadingTile.LoadType 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