| Enum Constant and Description |
|---|
FULL
Player is authenticated directly to Mojang auth servers.
|
GUEST
Split screen player using the host's authentication token.
|
SELF_SIGNED
This player is not authenticated with Mojang auth servers.
|
UNKNOWN
Player auth status is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthType UNKNOWN
public static final AuthType FULL
public static final AuthType GUEST
public static final AuthType SELF_SIGNED
public static AuthType[] values()
for (AuthType c : AuthType.values()) System.out.println(c);
public static AuthType 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