Package net.minecraft.recipe.book
Enum RecipeBookCategory
- All Implemented Interfaces:
Serializable
,Comparable<RecipeBookCategory>
,java.lang.constant.Constable
public enum RecipeBookCategory extends Enum<RecipeBookCategory>
- Mappings:
Namespace Name official bla
intermediary net/minecraft/class_5421
named net/minecraft/recipe/book/RecipeBookCategory
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description BLAST_FURNACE
CRAFTING
FURNACE
SMOKER
-
Constructor Summary
Constructors Modifier Constructor Description private
RecipeBookCategory()
-
Method Summary
Modifier and Type Method Description static RecipeBookCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static RecipeBookCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CRAFTING
- Mappings:
Namespace Name Mixin selector official a
Lbla;a:Lbla;
intermediary field_25763
Lnet/minecraft/class_5421;field_25763:Lnet/minecraft/class_5421;
named CRAFTING
Lnet/minecraft/recipe/book/RecipeBookCategory;CRAFTING:Lnet/minecraft/recipe/book/RecipeBookCategory;
-
FURNACE
- Mappings:
Namespace Name Mixin selector official b
Lbla;b:Lbla;
intermediary field_25764
Lnet/minecraft/class_5421;field_25764:Lnet/minecraft/class_5421;
named FURNACE
Lnet/minecraft/recipe/book/RecipeBookCategory;FURNACE:Lnet/minecraft/recipe/book/RecipeBookCategory;
-
BLAST_FURNACE
- Mappings:
Namespace Name Mixin selector official c
Lbla;c:Lbla;
intermediary field_25765
Lnet/minecraft/class_5421;field_25765:Lnet/minecraft/class_5421;
named BLAST_FURNACE
Lnet/minecraft/recipe/book/RecipeBookCategory;BLAST_FURNACE:Lnet/minecraft/recipe/book/RecipeBookCategory;
-
SMOKER
- Mappings:
Namespace Name Mixin selector official d
Lbla;d:Lbla;
intermediary field_25766
Lnet/minecraft/class_5421;field_25766:Lnet/minecraft/class_5421;
named SMOKER
Lnet/minecraft/recipe/book/RecipeBookCategory;SMOKER:Lnet/minecraft/recipe/book/RecipeBookCategory;
-
-
Constructor Details
-
RecipeBookCategory
private RecipeBookCategory()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-