public enum BlockTrackEntryList extends java.lang.Enum<BlockTrackEntryList>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Field and Description |
|---|---|
net.minecraft.util.NonNullList<IBlockTrackEntry> |
trackList |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<IBlockTrackEntry> |
getEntriesForCoordinate(net.minecraft.world.IBlockReader blockAccess,
net.minecraft.util.math.BlockPos pos,
net.minecraft.tileentity.TileEntity te) |
static BlockTrackEntryList |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockTrackEntryList[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockTrackEntryList INSTANCE
public final net.minecraft.util.NonNullList<IBlockTrackEntry> trackList
public static BlockTrackEntryList[] values()
for (BlockTrackEntryList c : BlockTrackEntryList.values()) System.out.println(c);
public static BlockTrackEntryList 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 nullpublic java.util.List<IBlockTrackEntry> getEntriesForCoordinate(net.minecraft.world.IBlockReader blockAccess, net.minecraft.util.math.BlockPos pos, net.minecraft.tileentity.TileEntity te)