public enum BlockHeatProperties extends java.lang.Enum<BlockHeatProperties> implements java.lang.Iterable<HeatPropertiesRecipe>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
java.util.Collection<HeatPropertiesRecipe> |
getAllEntries(net.minecraft.world.World world) |
HeatPropertiesRecipe |
getCustomHeatEntry(net.minecraft.world.World world,
net.minecraft.block.BlockState state) |
static BlockHeatProperties |
getInstance() |
java.util.Iterator<HeatPropertiesRecipe> |
iterator() |
void |
register(net.minecraft.block.Block block,
HeatPropertiesRecipe entry) |
static BlockHeatProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockHeatProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockHeatProperties INSTANCE
public static BlockHeatProperties[] values()
for (BlockHeatProperties c : BlockHeatProperties.values()) System.out.println(c);
public static BlockHeatProperties 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 static BlockHeatProperties getInstance()
public HeatPropertiesRecipe getCustomHeatEntry(net.minecraft.world.World world, net.minecraft.block.BlockState state)
public java.util.Collection<HeatPropertiesRecipe> getAllEntries(net.minecraft.world.World world)
public void clear()
public void register(net.minecraft.block.Block block,
HeatPropertiesRecipe entry)
public java.util.Iterator<HeatPropertiesRecipe> iterator()
iterator in interface java.lang.Iterable<HeatPropertiesRecipe>