Package net.minecraft.item.crafting
Enum RecipeBookCategory
- java.lang.Object
-
- java.lang.Enum<RecipeBookCategory>
-
- net.minecraft.item.crafting.RecipeBookCategory
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RecipeBookCategory>
public enum RecipeBookCategory extends java.lang.Enum<RecipeBookCategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLAST_FURNACE
CRAFTING
FURNACE
SMOKER
-
Constructor Summary
Constructors Modifier Constructor Description private
RecipeBookCategory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RecipeBookCategory
valueOf(java.lang.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 Detail
-
CRAFTING
public static final RecipeBookCategory CRAFTING
-
FURNACE
public static final RecipeBookCategory FURNACE
-
BLAST_FURNACE
public static final RecipeBookCategory BLAST_FURNACE
-
SMOKER
public static final RecipeBookCategory SMOKER
-
-
Method Detail
-
values
public static RecipeBookCategory[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RecipeBookCategory c : RecipeBookCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecipeBookCategory valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-