java.io.Serializable
, java.lang.Comparable<PlayerAccount.AccountFlag>
public static enum PlayerAccount.AccountFlag extends java.lang.Enum<PlayerAccount.AccountFlag>
Enum Constant | Description |
---|---|
ACCOUNTMENUSOFF |
Constant for account flags that overrides account expiration
|
ANSI |
Constant for account flags that overrides account expiration
|
ANSI16 |
Constant for account flags that require 16 color ansi instead of 256
|
CANEXPORT |
Constant for account flags that overrides account expiration
|
MAXCONNSOVERRIDE |
Constant for account flags that overrides account expiration
|
NOAUTOFORWARD |
Constant for account flags that turns off email forwarding all chars
|
NOCHARPURGE |
Constant for account flags that prevents any character purges
|
NOEXPIRE |
Constant for account flags that overrides account expiration
|
NOSTATS |
Constant for account flags that turns off pride stats for the account
|
NOTOP |
Constant for account flags that turns off top awards for the account
|
NUMCHARSOVERRIDE |
Constant for account flags that overrides number of characters limitation
|
Modifier and Type | Method | Description |
---|---|---|
static java.lang.String |
getListString() |
Returns a comma-delimited list of strings representing the accountflag values
|
static PlayerAccount.AccountFlag |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PlayerAccount.AccountFlag[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerAccount.AccountFlag NUMCHARSOVERRIDE
public static final PlayerAccount.AccountFlag NOEXPIRE
public static final PlayerAccount.AccountFlag CANEXPORT
public static final PlayerAccount.AccountFlag MAXCONNSOVERRIDE
public static final PlayerAccount.AccountFlag ANSI
public static final PlayerAccount.AccountFlag ACCOUNTMENUSOFF
public static final PlayerAccount.AccountFlag NOAUTOFORWARD
public static final PlayerAccount.AccountFlag NOSTATS
public static final PlayerAccount.AccountFlag NOTOP
public static final PlayerAccount.AccountFlag ANSI16
public static final PlayerAccount.AccountFlag NOCHARPURGE
public static PlayerAccount.AccountFlag[] values()
for (PlayerAccount.AccountFlag c : PlayerAccount.AccountFlag.values()) System.out.println(c);
public static PlayerAccount.AccountFlag 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()