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