public enum EAccountType extends java.lang.Enum<EAccountType>
| Enum Constant and Description |
|---|
AnonGameServer |
AnonUser |
Chat |
Clan |
ConsoleUser |
ContentServer |
GameServer |
Individual |
Invalid |
Multiseat |
Pending |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static EAccountType |
from(int code) |
static EAccountType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EAccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EAccountType Invalid
public static final EAccountType Individual
public static final EAccountType Multiseat
public static final EAccountType GameServer
public static final EAccountType AnonGameServer
public static final EAccountType Pending
public static final EAccountType ContentServer
public static final EAccountType Clan
public static final EAccountType Chat
public static final EAccountType ConsoleUser
public static final EAccountType AnonUser
public static EAccountType[] values()
for (EAccountType c : EAccountType.values()) System.out.println(c);
public static EAccountType 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 int code()
public static EAccountType from(int code)