public enum ELobbyType extends java.lang.Enum<ELobbyType>
| Enum Constant and Description |
|---|
FriendsOnly |
Invisible |
Private |
PrivateUnique |
Public |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static ELobbyType |
from(int code) |
static ELobbyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ELobbyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ELobbyType Private
public static final ELobbyType FriendsOnly
public static final ELobbyType Public
public static final ELobbyType Invisible
public static final ELobbyType PrivateUnique
public static ELobbyType[] values()
for (ELobbyType c : ELobbyType.values()) System.out.println(c);
public static ELobbyType 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 ELobbyType from(int code)