Package net.minecraft.client.util
Enum RecipeBookCategories
- java.lang.Object
-
- java.lang.Enum<RecipeBookCategories>
-
- net.minecraft.client.util.RecipeBookCategories
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RecipeBookCategories>
public enum RecipeBookCategories extends java.lang.Enum<RecipeBookCategories>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static java.util.Map<RecipeBookCategories,java.util.List<RecipeBookCategories>>
AGGREGATE_CATEGORIES
static java.util.List<RecipeBookCategories>
BLAST_FURNACE_CATEGORIES
static java.util.List<RecipeBookCategories>
CRAFTING_CATEGORIES
static java.util.List<RecipeBookCategories>
FURNACE_CATEGORIES
private java.util.List<ItemStack>
itemIcons
static java.util.List<RecipeBookCategories>
SMOKER_CATEGORIES
-
Constructor Summary
Constructors Modifier Constructor Description private
RecipeBookCategories(ItemStack... p_i48836_3_)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.List<RecipeBookCategories>
getCategories(RecipeBookCategory p_243236_0_)
java.util.List<ItemStack>
getIconItems()
static RecipeBookCategories
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RecipeBookCategories[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CRAFTING_SEARCH
public static final RecipeBookCategories CRAFTING_SEARCH
-
CRAFTING_BUILDING_BLOCKS
public static final RecipeBookCategories CRAFTING_BUILDING_BLOCKS
-
CRAFTING_REDSTONE
public static final RecipeBookCategories CRAFTING_REDSTONE
-
CRAFTING_EQUIPMENT
public static final RecipeBookCategories CRAFTING_EQUIPMENT
-
CRAFTING_MISC
public static final RecipeBookCategories CRAFTING_MISC
-
FURNACE_SEARCH
public static final RecipeBookCategories FURNACE_SEARCH
-
FURNACE_FOOD
public static final RecipeBookCategories FURNACE_FOOD
-
FURNACE_BLOCKS
public static final RecipeBookCategories FURNACE_BLOCKS
-
FURNACE_MISC
public static final RecipeBookCategories FURNACE_MISC
-
BLAST_FURNACE_SEARCH
public static final RecipeBookCategories BLAST_FURNACE_SEARCH
-
BLAST_FURNACE_BLOCKS
public static final RecipeBookCategories BLAST_FURNACE_BLOCKS
-
BLAST_FURNACE_MISC
public static final RecipeBookCategories BLAST_FURNACE_MISC
-
SMOKER_SEARCH
public static final RecipeBookCategories SMOKER_SEARCH
-
SMOKER_FOOD
public static final RecipeBookCategories SMOKER_FOOD
-
STONECUTTER
public static final RecipeBookCategories STONECUTTER
-
SMITHING
public static final RecipeBookCategories SMITHING
-
CAMPFIRE
public static final RecipeBookCategories CAMPFIRE
-
UNKNOWN
public static final RecipeBookCategories UNKNOWN
-
-
Field Detail
-
SMOKER_CATEGORIES
public static final java.util.List<RecipeBookCategories> SMOKER_CATEGORIES
-
BLAST_FURNACE_CATEGORIES
public static final java.util.List<RecipeBookCategories> BLAST_FURNACE_CATEGORIES
-
FURNACE_CATEGORIES
public static final java.util.List<RecipeBookCategories> FURNACE_CATEGORIES
-
CRAFTING_CATEGORIES
public static final java.util.List<RecipeBookCategories> CRAFTING_CATEGORIES
-
AGGREGATE_CATEGORIES
public static final java.util.Map<RecipeBookCategories,java.util.List<RecipeBookCategories>> AGGREGATE_CATEGORIES
-
itemIcons
private final java.util.List<ItemStack> itemIcons
-
-
Constructor Detail
-
RecipeBookCategories
private RecipeBookCategories(ItemStack... p_i48836_3_)
-
-
Method Detail
-
values
public static RecipeBookCategories[] 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 (RecipeBookCategories c : RecipeBookCategories.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecipeBookCategories 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
-
getCategories
public static java.util.List<RecipeBookCategories> getCategories(RecipeBookCategory p_243236_0_)
-
getIconItems
public java.util.List<ItemStack> getIconItems()
-
-