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 GameModeGameMode. getByValue(int value)Deprecated.Magic valuestatic @NotNull GameModeBukkit. getDefaultGameMode()Gets the defaultGameModefor new players.@NotNull GameModeServer. getDefaultGameMode()Gets the defaultGameModefor new players.static GameModeGameMode. 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 voidBukkit. setDefaultGameMode(@NotNull GameMode mode)Sets the defaultGameModefor new players.voidServer. setDefaultGameMode(@NotNull GameMode mode)Sets the defaultGameModefor new players. -
Uses of GameMode in org.bukkit.entity
Methods in org.bukkit.entity that return GameMode Modifier and Type Method Description @NotNull GameModeHumanEntity. getGameMode()Gets this human's currentGameModeMethods in org.bukkit.entity with parameters of type GameMode Modifier and Type Method Description voidHumanEntity. 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 GameModePlayerGameModeChangeEvent. 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)
-