public enum PlayerType extends Enum<PlayerType>
| Enum Constant and Description |
|---|
ALL_PLAYERS |
ONLY_BEDROCK |
ONLY_JAVA |
| Modifier and Type | Method and Description |
|---|---|
static PlayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerType ALL_PLAYERS
public static final PlayerType ONLY_BEDROCK
public static final PlayerType ONLY_JAVA
public static PlayerType[] values()
for (PlayerType c : PlayerType.values()) System.out.println(c);
public static PlayerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null