public enum GameType extends Enum<GameType>
| Enum Constant and Description |
|---|
ADVENTURE |
CREATIVE |
CREATIVE_VIEWER |
DEFAULT |
SURVIVAL |
SURVIVAL_VIEWER |
WORLD_DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static GameType |
from(int id) |
static GameType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameType SURVIVAL
public static final GameType CREATIVE
public static final GameType ADVENTURE
public static final GameType SURVIVAL_VIEWER
public static final GameType CREATIVE_VIEWER
public static final GameType DEFAULT
public static final GameType WORLD_DEFAULT
public static GameType[] values()
for (GameType c : GameType.values()) System.out.println(c);
public static GameType 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 nullpublic static GameType from(int id)
Copyright © 2018–2022 NukkitX. All rights reserved.