public enum RecipeType extends Enum<RecipeType>
| Enum Constant and Description |
|---|
FURNACE |
FURNACE_DATA |
MULTI |
SHAPED |
SHAPED_CHEMISTRY |
SHAPELESS |
SHAPELESS_CHEMISTRY |
SHULKER_BOX |
| Modifier and Type | Method and Description |
|---|---|
static RecipeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecipeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecipeType SHAPELESS
public static final RecipeType SHAPED
public static final RecipeType FURNACE
public static final RecipeType FURNACE_DATA
public static final RecipeType MULTI
public static final RecipeType SHULKER_BOX
public static final RecipeType SHAPELESS_CHEMISTRY
public static final RecipeType SHAPED_CHEMISTRY
public static RecipeType[] values()
for (RecipeType c : RecipeType.values()) System.out.println(c);
public static RecipeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.