public enum CraftingBookDataType extends Enum<CraftingBookDataType>
| Enum Constant and Description |
|---|
CRAFTING_BOOK_STATUS |
DISPLAYED_RECIPE |
| Modifier and Type | Method and Description |
|---|---|
static CraftingBookDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CraftingBookDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CraftingBookDataType DISPLAYED_RECIPE
public static final CraftingBookDataType CRAFTING_BOOK_STATUS
public static CraftingBookDataType[] values()
for (CraftingBookDataType c : CraftingBookDataType.values()) System.out.println(c);
public static CraftingBookDataType 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.