public static enum VillagerMeta.Hat extends java.lang.Enum<VillagerMeta.Hat>
| Enum Constant and Description |
|---|
FULL
Full hat rendering.
|
NONE
No hat rendering.
|
PARTIAL
Partial hat rendering.
|
| Modifier and Type | Method and Description |
|---|---|
static VillagerMeta.Hat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VillagerMeta.Hat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VillagerMeta.Hat NONE
public static final VillagerMeta.Hat PARTIAL
public static final VillagerMeta.Hat FULL
public static VillagerMeta.Hat[] values()
for (VillagerMeta.Hat c : VillagerMeta.Hat.values()) System.out.println(c);
public static VillagerMeta.Hat 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