Enum Class BlastFurnaceRecipeManager
java.lang.Object
java.lang.Enum<BlastFurnaceRecipeManager>
com.blamejared.crafttweaker.api.recipe.manager.BlastFurnaceRecipeManager
- All Implemented Interfaces:
CommandStringDisplayable,ICookingRecipeManager<net.minecraft.world.item.crafting.BlastingRecipe>,IRecipeManager<net.minecraft.world.item.crafting.BlastingRecipe>,Serializable,Comparable<BlastFurnaceRecipeManager>,Constable,Iterable<net.minecraft.world.item.crafting.BlastingRecipe>
@ZenRegister
public enum BlastFurnaceRecipeManager
extends Enum<BlastFurnaceRecipeManager>
implements ICookingRecipeManager<net.minecraft.world.item.crafting.BlastingRecipe>
- DocParam:
- this blastFurnace
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields inherited from interface com.blamejared.crafttweaker.api.recipe.manager.base.IRecipeManager
JSON_RECIPE_GSON -
Method Summary
Modifier and TypeMethodDescriptionnet.minecraft.world.item.crafting.RecipeType<net.minecraft.world.item.crafting.BlastingRecipe>Gets the recipe type for the registry to remove from.net.minecraft.world.item.crafting.BlastingRecipemakeRecipe(String name, IItemStack output, IIngredient input, float xp, int cookTime) static BlastFurnaceRecipeManagerReturns the enum constant of this class with the specified name.static BlastFurnaceRecipeManager[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface com.blamejared.crafttweaker.api.recipe.manager.base.ICookingRecipeManager
addRecipe, removeRecipeMethods inherited from interface com.blamejared.crafttweaker.api.recipe.manager.base.IRecipeManager
addJsonRecipe, fixRecipeName, getAllRecipes, getBracketResourceLocation, getCommandString, getRecipeByName, getRecipeList, getRecipeMap, getRecipes, getRecipesByOutput, iterator, remove, removeAll, removeByInput, removeByModid, removeByName, removeByName, removeByRegexMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
makeRecipe
public net.minecraft.world.item.crafting.BlastingRecipe makeRecipe(String name, IItemStack output, IIngredient input, float xp, int cookTime) - Specified by:
makeRecipein interfaceICookingRecipeManager<net.minecraft.world.item.crafting.BlastingRecipe>
-
getRecipeType
public net.minecraft.world.item.crafting.RecipeType<net.minecraft.world.item.crafting.BlastingRecipe> getRecipeType()Description copied from interface:IRecipeManagerGets the recipe type for the registry to remove from.- Specified by:
getRecipeTypein interfaceIRecipeManager<net.minecraft.world.item.crafting.BlastingRecipe>- Returns:
- IRecipeType of this registry.
-