java.io.Serializable
, java.lang.Comparable<PlayerStats.PlayerFlag>
public static enum PlayerStats.PlayerFlag extends java.lang.Enum<PlayerStats.PlayerFlag>
Enum Constant | Description |
---|---|
NOSTATS |
Constant for player flags that turns off pride stat bumps
|
NOTOP |
Constant for player flags that turns off top stat appearances
|
Modifier and Type | Method | Description |
---|---|---|
static java.lang.String |
getListString() |
Returns a comma-delimited list of strings representing the player flag values
|
static PlayerStats.PlayerFlag |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PlayerStats.PlayerFlag[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerStats.PlayerFlag NOSTATS
public static final PlayerStats.PlayerFlag NOTOP
public static PlayerStats.PlayerFlag[] values()
for (PlayerStats.PlayerFlag c : PlayerStats.PlayerFlag.values()) System.out.println(c);
public static PlayerStats.PlayerFlag 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 static java.lang.String getListString()