public enum WauzBestiaryCategory extends java.lang.Enum<WauzBestiaryCategory>
Enum Constant and Description |
---|
BEAST
The beast category for entries like bears or giant spiders.
|
CONSTRUCT
The construct category for entries like golems or elementals.
|
CRITTER
The critter category for entries like farm animals or birds.
|
DEMON
The demon category for entries like imps or archdemons.
|
HUMAN
The human category for entries like thieves or cultists.
|
MYTHICAL
The mythical category for entries like ogres or ents.
|
UNDEAD
The undead category for entries like zombies or skeletons.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
name
The name of the bestiary category.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns the name of the bestiary category in a description friendly format.
|
static WauzBestiaryCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WauzBestiaryCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WauzBestiaryCategory CRITTER
public static final WauzBestiaryCategory BEAST
public static final WauzBestiaryCategory MYTHICAL
public static final WauzBestiaryCategory CONSTRUCT
public static final WauzBestiaryCategory HUMAN
public static final WauzBestiaryCategory UNDEAD
public static final WauzBestiaryCategory DEMON
public static WauzBestiaryCategory[] values()
for (WauzBestiaryCategory c : WauzBestiaryCategory.values()) System.out.println(c);
public static WauzBestiaryCategory 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<WauzBestiaryCategory>