public enum InventoryLayout extends java.lang.Enum<InventoryLayout>
| Enum Constant and Description |
|---|
CREATIVE |
NONE |
RECIPE_BOOK |
SURVIVAL |
| 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 SURVIVAL
public static final InventoryLayout RECIPE_BOOK
public static final InventoryLayout CREATIVE
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