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