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