java.io.Serializable, java.lang.Comparable<AccountStats.PrideStat>public static enum AccountStats.PrideStat extends java.lang.Enum<AccountStats.PrideStat>
| Enum Constant | Description | 
|---|---|
| AREAS_EXPLORED | |
| EXPERIENCE_GAINED | |
| MINUTES_ON | |
| PVPKILLS | |
| QUESTPOINTS_EARNED | |
| QUESTS_COMPLETED | |
| ROOMS_EXPLORED | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static AccountStats.PrideStat | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static AccountStats.PrideStat[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AccountStats.PrideStat PVPKILLS
public static final AccountStats.PrideStat AREAS_EXPLORED
public static final AccountStats.PrideStat ROOMS_EXPLORED
public static final AccountStats.PrideStat EXPERIENCE_GAINED
public static final AccountStats.PrideStat MINUTES_ON
public static final AccountStats.PrideStat QUESTS_COMPLETED
public static final AccountStats.PrideStat QUESTPOINTS_EARNED
public static AccountStats.PrideStat[] values()
for (AccountStats.PrideStat c : AccountStats.PrideStat.values()) System.out.println(c);
public static AccountStats.PrideStat 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