public enum MultiplayerMode extends Enum<MultiplayerMode>
| Modifier and Type | Method and Description |
|---|---|
static MultiplayerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiplayerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiplayerMode ENABLE
public static final MultiplayerMode DISABLE
public static final MultiplayerMode JOIN_CODE
public static MultiplayerMode[] values()
for (MultiplayerMode c : MultiplayerMode.values()) System.out.println(c);
public static MultiplayerMode 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–2019 NukkitX. All rights reserved.