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