public enum LobbyBypassScope extends java.lang.Enum<LobbyBypassScope>
| Enum Constant and Description |
|---|
EVERYONE
everyone
|
ORGANIZATION
organization
|
ORGANIZATION_AND_FEDERATED
organization And Federated
|
ORGANIZER
organizer
|
UNEXPECTED_VALUE
For LobbyBypassScope values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static LobbyBypassScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LobbyBypassScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LobbyBypassScope ORGANIZER
public static final LobbyBypassScope ORGANIZATION
public static final LobbyBypassScope ORGANIZATION_AND_FEDERATED
public static final LobbyBypassScope EVERYONE
public static final LobbyBypassScope UNKNOWN_FUTURE_VALUE
public static final LobbyBypassScope UNEXPECTED_VALUE
public static LobbyBypassScope[] values()
for (LobbyBypassScope c : LobbyBypassScope.values()) System.out.println(c);
public static LobbyBypassScope 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 null