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