Uses of Class
org.bukkit.GameMode
-
Packages that use GameMode Package Description org.bukkit The root package of the Bukkit API, contains generalized API classes.org.bukkit.entity Interfaces for non-voxel objects that can exist in aworld
, including all players, monsters, projectiles, etc.org.bukkit.event.player -
-
Uses of GameMode in org.bukkit
Methods in org.bukkit that return GameMode Modifier and Type Method Description static @Nullable GameMode
GameMode. getByValue(int value)
Deprecated.Magic valuestatic @NotNull GameMode
Bukkit. getDefaultGameMode()
Gets the defaultGameMode
for new players.@NotNull GameMode
Server. getDefaultGameMode()
Gets the defaultGameMode
for new players.static GameMode
GameMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static GameMode[]
GameMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bukkit with parameters of type GameMode Modifier and Type Method Description static void
Bukkit. setDefaultGameMode(@NotNull GameMode mode)
Sets the defaultGameMode
for new players.void
Server. setDefaultGameMode(@NotNull GameMode mode)
Sets the defaultGameMode
for new players. -
Uses of GameMode in org.bukkit.entity
Methods in org.bukkit.entity that return GameMode Modifier and Type Method Description @NotNull GameMode
HumanEntity. getGameMode()
Gets this human's currentGameMode
Methods in org.bukkit.entity with parameters of type GameMode Modifier and Type Method Description void
HumanEntity. setGameMode(@NotNull GameMode mode)
Sets this human's currentGameMode
-
Uses of GameMode in org.bukkit.event.player
Methods in org.bukkit.event.player that return GameMode Modifier and Type Method Description @NotNull GameMode
PlayerGameModeChangeEvent. getNewGameMode()
Gets the GameMode the player is switched to.Constructors in org.bukkit.event.player with parameters of type GameMode Constructor Description PlayerGameModeChangeEvent(@NotNull Player player, @NotNull GameMode newGameMode)
-