Enum Class GameMode

java.lang.Object
java.lang.Enum<GameMode>
net.minecraft.world.GameMode
All Implemented Interfaces:
Serializable, Comparable<GameMode>, Constable, StringIdentifiable

public enum GameMode extends Enum<GameMode> implements StringIdentifiable
Mappings:
Namespace Name
named net/minecraft/world/GameMode
intermediary net/minecraft/class_1934
official dbx
  • Enum Constant Details

    • SURVIVAL

      public static final GameMode SURVIVAL
      Mappings:
      Namespace Name Mixin selector
      named SURVIVAL Lnet/minecraft/world/GameMode;SURVIVAL:Lnet/minecraft/world/GameMode;
      intermediary field_9215 Lnet/minecraft/class_1934;field_9215:Lnet/minecraft/class_1934;
      official a Ldbx;a:Ldbx;
    • CREATIVE

      public static final GameMode CREATIVE
      Mappings:
      Namespace Name Mixin selector
      named CREATIVE Lnet/minecraft/world/GameMode;CREATIVE:Lnet/minecraft/world/GameMode;
      intermediary field_9220 Lnet/minecraft/class_1934;field_9220:Lnet/minecraft/class_1934;
      official b Ldbx;b:Ldbx;
    • ADVENTURE

      public static final GameMode ADVENTURE
      Mappings:
      Namespace Name Mixin selector
      named ADVENTURE Lnet/minecraft/world/GameMode;ADVENTURE:Lnet/minecraft/world/GameMode;
      intermediary field_9216 Lnet/minecraft/class_1934;field_9216:Lnet/minecraft/class_1934;
      official c Ldbx;c:Ldbx;
    • SPECTATOR

      public static final GameMode SPECTATOR
      Mappings:
      Namespace Name Mixin selector
      named SPECTATOR Lnet/minecraft/world/GameMode;SPECTATOR:Lnet/minecraft/world/GameMode;
      intermediary field_9219 Lnet/minecraft/class_1934;field_9219:Lnet/minecraft/class_1934;
      official d Ldbx;d:Ldbx;
  • Field Details

    • DEFAULT

      public static final GameMode DEFAULT
      Mappings:
      Namespace Name Mixin selector
      named DEFAULT Lnet/minecraft/world/GameMode;DEFAULT:Lnet/minecraft/world/GameMode;
      intermediary field_28045 Lnet/minecraft/class_1934;field_28045:Lnet/minecraft/class_1934;
      official e Ldbx;e:Ldbx;
    • CODEC

      public static final StringIdentifiable.EnumCodec<GameMode> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/world/GameMode;CODEC:Lnet/minecraft/util/StringIdentifiable$EnumCodec;
      intermediary field_41676 Lnet/minecraft/class_1934;field_41676:Lnet/minecraft/class_3542$class_7292;
      official f Ldbx;f:Lazu$a;
    • BY_ID

      private static final IntFunction<GameMode> BY_ID
      Mappings:
      Namespace Name Mixin selector
      named BY_ID Lnet/minecraft/world/GameMode;BY_ID:Ljava/util/function/IntFunction;
      intermediary field_41677 Lnet/minecraft/class_1934;field_41677:Ljava/util/function/IntFunction;
      official g Ldbx;g:Ljava/util/function/IntFunction;
    • UNKNOWN

      private static final int UNKNOWN
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named UNKNOWN Lnet/minecraft/world/GameMode;UNKNOWN:I
      intermediary field_30964 Lnet/minecraft/class_1934;field_30964:I
      official h Ldbx;h:I
    • id

      private final int id
      Mappings:
      Namespace Name Mixin selector
      named id Lnet/minecraft/world/GameMode;id:I
      intermediary field_9217 Lnet/minecraft/class_1934;field_9217:I
      official i Ldbx;i:I
    • name

      private final String name
      Mappings:
      Namespace Name Mixin selector
      named name Lnet/minecraft/world/GameMode;name:Ljava/lang/String;
      intermediary field_9221 Lnet/minecraft/class_1934;field_9221:Ljava/lang/String;
      official j Ldbx;j:Ljava/lang/String;
    • simpleTranslatableName

      private final Text simpleTranslatableName
      Mappings:
      Namespace Name Mixin selector
      named simpleTranslatableName Lnet/minecraft/world/GameMode;simpleTranslatableName:Lnet/minecraft/text/Text;
      intermediary field_28046 Lnet/minecraft/class_1934;field_28046:Lnet/minecraft/class_2561;
      official k Ldbx;k:Lxp;
    • translatableName

      private final Text translatableName
      Mappings:
      Namespace Name Mixin selector
      named translatableName Lnet/minecraft/world/GameMode;translatableName:Lnet/minecraft/text/Text;
      intermediary field_28047 Lnet/minecraft/class_1934;field_28047:Lnet/minecraft/class_2561;
      official l Ldbx;l:Lxp;
  • Constructor Details

    • GameMode

      private GameMode(int id, String name)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/world/GameMode;<init>(Ljava/lang/String;IILjava/lang/String;)V
      intermediary <init> Lnet/minecraft/class_1934;<init>(Ljava/lang/String;IILjava/lang/String;)V
      official <init> Ldbx;<init>(Ljava/lang/String;IILjava/lang/String;)V
  • Method Details

    • values

      public static GameMode[] 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

      public static GameMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getId

      public int getId()
      Mappings:
      Namespace Name Mixin selector
      named getId Lnet/minecraft/world/GameMode;getId()I
      intermediary method_8379 Lnet/minecraft/class_1934;method_8379()I
      official a Ldbx;a()I
    • getName

      public String getName()
      Mappings:
      Namespace Name Mixin selector
      named getName Lnet/minecraft/world/GameMode;getName()Ljava/lang/String;
      intermediary method_8381 Lnet/minecraft/class_1934;method_8381()Ljava/lang/String;
      official b Ldbx;b()Ljava/lang/String;
    • asString

      public String asString()
      Returns the unique string representation of the enum, used for serialization.
      Specified by:
      asString in interface StringIdentifiable
      Returns:
      the unique string representation of the enum, used for serialization
      Mappings:
      Namespace Name Mixin selector
      named asString Lnet/minecraft/util/StringIdentifiable;asString()Ljava/lang/String;
      intermediary method_15434 Lnet/minecraft/class_3542;method_15434()Ljava/lang/String;
      official c Lazu;c()Ljava/lang/String;
    • getTranslatableName

      public Text getTranslatableName()
      Mappings:
      Namespace Name Mixin selector
      named getTranslatableName Lnet/minecraft/world/GameMode;getTranslatableName()Lnet/minecraft/text/Text;
      intermediary method_8383 Lnet/minecraft/class_1934;method_8383()Lnet/minecraft/class_2561;
      official d Ldbx;d()Lxp;
    • getSimpleTranslatableName

      public Text getSimpleTranslatableName()
      Mappings:
      Namespace Name Mixin selector
      named getSimpleTranslatableName Lnet/minecraft/world/GameMode;getSimpleTranslatableName()Lnet/minecraft/text/Text;
      intermediary method_32763 Lnet/minecraft/class_1934;method_32763()Lnet/minecraft/class_2561;
      official e Ldbx;e()Lxp;
    • setAbilities

      public void setAbilities(PlayerAbilities abilities)
      Mappings:
      Namespace Name Mixin selector
      named setAbilities Lnet/minecraft/world/GameMode;setAbilities(Lnet/minecraft/entity/player/PlayerAbilities;)V
      intermediary method_8382 Lnet/minecraft/class_1934;method_8382(Lnet/minecraft/class_1656;)V
      official a Ldbx;a(Lcmw;)V
    • isBlockBreakingRestricted

      public boolean isBlockBreakingRestricted()
      Mappings:
      Namespace Name Mixin selector
      named isBlockBreakingRestricted Lnet/minecraft/world/GameMode;isBlockBreakingRestricted()Z
      intermediary method_8387 Lnet/minecraft/class_1934;method_8387()Z
      official f Ldbx;f()Z
    • isCreative

      public boolean isCreative()
      Mappings:
      Namespace Name Mixin selector
      named isCreative Lnet/minecraft/world/GameMode;isCreative()Z
      intermediary method_8386 Lnet/minecraft/class_1934;method_8386()Z
      official g Ldbx;g()Z
    • isSurvivalLike

      public boolean isSurvivalLike()
      Mappings:
      Namespace Name Mixin selector
      named isSurvivalLike Lnet/minecraft/world/GameMode;isSurvivalLike()Z
      intermediary method_8388 Lnet/minecraft/class_1934;method_8388()Z
      official h Ldbx;h()Z
    • byId

      public static GameMode byId(int id)
      Mappings:
      Namespace Name Mixin selector
      named byId Lnet/minecraft/world/GameMode;byId(I)Lnet/minecraft/world/GameMode;
      intermediary method_8384 Lnet/minecraft/class_1934;method_8384(I)Lnet/minecraft/class_1934;
      official a Ldbx;a(I)Ldbx;
    • byName

      public static GameMode byName(String name)
      Mappings:
      Namespace Name Mixin selector
      named byName Lnet/minecraft/world/GameMode;byName(Ljava/lang/String;)Lnet/minecraft/world/GameMode;
      intermediary method_8385 Lnet/minecraft/class_1934;method_8385(Ljava/lang/String;)Lnet/minecraft/class_1934;
      official a Ldbx;a(Ljava/lang/String;)Ldbx;
    • byName

      @Contract("_,!null->!null;_,null->_") @Nullable public static @Nullable GameMode byName(String name, @Nullable @Nullable GameMode defaultMode)
      Mappings:
      Namespace Name Mixin selector
      named byName Lnet/minecraft/world/GameMode;byName(Ljava/lang/String;Lnet/minecraft/world/GameMode;)Lnet/minecraft/world/GameMode;
      intermediary method_8378 Lnet/minecraft/class_1934;method_8378(Ljava/lang/String;Lnet/minecraft/class_1934;)Lnet/minecraft/class_1934;
      official a Ldbx;a(Ljava/lang/String;Ldbx;)Ldbx;
    • getId

      public static int getId(@Nullable @Nullable GameMode gameMode)
      Mappings:
      Namespace Name Mixin selector
      named getId Lnet/minecraft/world/GameMode;getId(Lnet/minecraft/world/GameMode;)I
      intermediary method_32761 Lnet/minecraft/class_1934;method_32761(Lnet/minecraft/class_1934;)I
      official a Ldbx;a(Ldbx;)I
    • getOrNull

      @Nullable public static @Nullable GameMode getOrNull(int id)
      Mappings:
      Namespace Name Mixin selector
      named getOrNull Lnet/minecraft/world/GameMode;getOrNull(I)Lnet/minecraft/world/GameMode;
      intermediary method_32762 Lnet/minecraft/class_1934;method_32762(I)Lnet/minecraft/class_1934;
      official b Ldbx;b(I)Ldbx;