public static enum Npc.Type extends java.lang.Enum<Npc.Type>
Npc.getTypeID()
!Enum Constant and Description |
---|
Animal
Animal npc (e.g. pig, cow, bear etc.)
|
Human
Human npc (e.g. dummy, bandits)
|
Monster
Monsters (e.g. skeletons)
|
Mount
Mount npc (e.g. horse, donkey, camel)
|
Modifier and Type | Method and Description |
---|---|
static Npc.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Npc.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Npc.Type Animal
public static final Npc.Type Mount
public static final Npc.Type Monster
public static final Npc.Type Human
public static Npc.Type[] values()
for (Npc.Type c : Npc.Type.values()) System.out.println(c);
public static Npc.Type 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