java.io.Serializable, java.lang.Comparable<GameMode>public enum GameMode extends java.lang.Enum<GameMode>
HumanEntitys may
 have| Enum Constant | Description | 
|---|---|
| ADVENTURE | Adventure mode cannot break blocks without the correct tools. | 
| CREATIVE | Creative mode may fly, build instantly, become invulnerable and create
 free items. | 
| SPECTATOR | Spectator mode cannot interact with the world in anyway and is 
 invisible to normal players. | 
| SURVIVAL | Survival mode is the "normal" gameplay type, with no special features. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static GameMode | getByValue(int value) | Deprecated.
 Magic value | 
| int | getValue() | Deprecated.
 Magic value | 
| static GameMode | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static GameMode[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final GameMode CREATIVE
public static final GameMode SURVIVAL
public static final GameMode ADVENTURE
public static final GameMode SPECTATOR
public static GameMode[] values()
for (GameMode c : GameMode.values()) System.out.println(c);
public static GameMode 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@Deprecated public int getValue()
Copyright © 2018. All rights reserved.