Package org.bukkit
Enum Class GameMode
- All Implemented Interfaces:
Serializable
,Comparable<GameMode>
,Constable
,Translatable
Represents the various type of game modes that
HumanEntity
s may
have-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAdventure mode cannot break blocks without the correct tools.Creative mode may fly, build instantly, become invulnerable and create free items.Spectator mode cannot interact with the world in anyway and is invisible to normal players.Survival mode is the "normal" gameplay type, with no special features. -
Method Summary
Modifier and TypeMethodDescriptiongetByValue
(int value) Gets the GameMode represented by the specified valueint
getValue()
Gets the mode value associated with this GameModeboolean
Checks whether this game mode is invulnerable (i.e.Gets the translation key.static GameMode
Returns the enum constant of this class with the specified name.static GameMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATIVE
Creative mode may fly, build instantly, become invulnerable and create free items. -
SURVIVAL
Survival mode is the "normal" gameplay type, with no special features. -
ADVENTURE
Adventure mode cannot break blocks without the correct tools. -
SPECTATOR
Spectator mode cannot interact with the world in anyway and is invisible to normal players. This grants the player the ability to no-clip through the world.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
translationKey
Description copied from interface:net.kyori.adventure.translation.Translatable
Gets the translation key.- Specified by:
translationKey
in interfaceTranslatable
- Returns:
- the translation key
-
getValue
Gets the mode value associated with this GameMode- Returns:
- An integer value of this gamemode
- API Note:
- Internal Use Only
-
getByValue
Gets the GameMode represented by the specified value- Parameters:
value
- Value to check- Returns:
- Associative
GameMode
with the given value, or null if it doesn't exist - API Note:
- Internal Use Only
-
isInvulnerable
public boolean isInvulnerable()- Returns:
- whether this game mode is invulnerable
-