public enum CategoryEnum extends java.lang.Enum<CategoryEnum>
| Enum Constant and Description |
|---|
ALPHABET |
ANIMALS |
BLOCKS |
CUSTOM |
CUSTOM2 |
CUSTOM3 |
CUSTOM4 |
CUSTOM5 |
DECORATION |
DISABLED |
FOOD_DRINKS |
HUMANOID |
HUMANS |
MISCELLANEOUS |
MONSTERS |
ONLINE_PLAYERS |
PLANTS |
| Modifier and Type | Method and Description |
|---|---|
static CategoryEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CategoryEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryEnum ALPHABET
public static final CategoryEnum ANIMALS
public static final CategoryEnum BLOCKS
public static final CategoryEnum DECORATION
public static final CategoryEnum FOOD_DRINKS
public static final CategoryEnum HUMANS
public static final CategoryEnum HUMANOID
public static final CategoryEnum MISCELLANEOUS
public static final CategoryEnum MONSTERS
public static final CategoryEnum PLANTS
public static final CategoryEnum CUSTOM
public static final CategoryEnum CUSTOM2
public static final CategoryEnum CUSTOM3
public static final CategoryEnum CUSTOM4
public static final CategoryEnum CUSTOM5
public static final CategoryEnum ONLINE_PLAYERS
public static final CategoryEnum DISABLED
public static CategoryEnum[] values()
for (CategoryEnum c : CategoryEnum.values()) System.out.println(c);
public static CategoryEnum 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