public enum ClientPlayMode extends Enum<ClientPlayMode>
| Enum Constant and Description |
|---|
EXIT_LEVEL |
EXIT_LEVEL_LIVING_ROOM |
LIVING_ROOM |
NORMAL |
PLACEMENT |
REALITY |
SCREEN |
TEASER |
VIEWER |
| Modifier and Type | Method and Description |
|---|---|
static ClientPlayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientPlayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientPlayMode NORMAL
public static final ClientPlayMode TEASER
public static final ClientPlayMode SCREEN
public static final ClientPlayMode VIEWER
public static final ClientPlayMode REALITY
public static final ClientPlayMode PLACEMENT
public static final ClientPlayMode LIVING_ROOM
public static final ClientPlayMode EXIT_LEVEL
public static final ClientPlayMode EXIT_LEVEL_LIVING_ROOM
public static ClientPlayMode[] values()
for (ClientPlayMode c : ClientPlayMode.values()) System.out.println(c);
public static ClientPlayMode 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 nullCopyright © 2018–2022 NukkitX. All rights reserved.