public enum AgisStates extends java.lang.Enum<AgisStates>
Enum Constant and Description |
---|
Attackable |
BankTeller |
Combat |
Dead |
ItemAvailable |
ItemsToSell |
Lootable |
Movement |
PVP |
QuestAvailable |
QuestConcludable |
QuestInProgress |
Stunned |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static AgisStates |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AgisStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgisStates Dead
public static final AgisStates PVP
public static final AgisStates Combat
public static final AgisStates QuestAvailable
public static final AgisStates QuestInProgress
public static final AgisStates QuestConcludable
public static final AgisStates Attackable
public static final AgisStates Lootable
public static final AgisStates Stunned
public static final AgisStates Movement
public static final AgisStates ItemAvailable
public static final AgisStates ItemsToSell
public static final AgisStates BankTeller
public static AgisStates[] values()
for (AgisStates c : AgisStates.values()) System.out.println(c);
public static AgisStates 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<AgisStates>