public enum InventoryLayout extends java.lang.Enum<InventoryLayout>
| Enum Constant and Description |
|---|
DEFAULT
RECIPE_BOOK before v924
|
INVENTORY_ONLY
SURVIVAL before v924
|
NONE |
RECIPE_BOOK_ONLY
CREATIVE before v924
|
| Modifier and Type | Field and Description |
|---|---|
static InventoryLayout[] |
VALUES |
| Modifier and Type | Method and Description |
|---|---|
static InventoryLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InventoryLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InventoryLayout NONE
public static final InventoryLayout INVENTORY_ONLY
public static final InventoryLayout DEFAULT
public static final InventoryLayout RECIPE_BOOK_ONLY
public static final InventoryLayout[] VALUES
public static InventoryLayout[] values()
for (InventoryLayout c : InventoryLayout.values()) System.out.println(c);
public static InventoryLayout valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null