Enum Class NetworkState

java.lang.Object
java.lang.Enum<NetworkState>
net.minecraft.network.NetworkState
All Implemented Interfaces:
Serializable, Comparable<NetworkState>, Constable

public enum NetworkState extends Enum<NetworkState>
Mappings:
Namespace Name
official sc
intermediary net/minecraft/class_2539
named net/minecraft/network/NetworkState
  • Enum Constant Details

    • HANDSHAKING

      public static final NetworkState HANDSHAKING
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a:Lsc;
      intermediary field_20590 Lnet/minecraft/class_2539;field_20590:Lnet/minecraft/class_2539;
      named HANDSHAKING Lnet/minecraft/network/NetworkState;HANDSHAKING:Lnet/minecraft/network/NetworkState;
    • PLAY

      public static final NetworkState PLAY
      Mappings:
      Namespace Name Mixin selector
      official b Lsc;b:Lsc;
      intermediary field_20591 Lnet/minecraft/class_2539;field_20591:Lnet/minecraft/class_2539;
      named PLAY Lnet/minecraft/network/NetworkState;PLAY:Lnet/minecraft/network/NetworkState;
    • STATUS

      public static final NetworkState STATUS
      Mappings:
      Namespace Name Mixin selector
      official c Lsc;c:Lsc;
      intermediary field_20592 Lnet/minecraft/class_2539;field_20592:Lnet/minecraft/class_2539;
      named STATUS Lnet/minecraft/network/NetworkState;STATUS:Lnet/minecraft/network/NetworkState;
    • LOGIN

      public static final NetworkState LOGIN
      Mappings:
      Namespace Name Mixin selector
      official d Lsc;d:Lsc;
      intermediary field_20593 Lnet/minecraft/class_2539;field_20593:Lnet/minecraft/class_2539;
      named LOGIN Lnet/minecraft/network/NetworkState;LOGIN:Lnet/minecraft/network/NetworkState;
  • Field Details

    • NULL_PACKET_ID_OR_MIN_STATE_ID

      private static final int NULL_PACKET_ID_OR_MIN_STATE_ID
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official e Lsc;e:I
      intermediary field_33281 Lnet/minecraft/class_2539;field_33281:I
      named NULL_PACKET_ID_OR_MIN_STATE_ID Lnet/minecraft/network/NetworkState;NULL_PACKET_ID_OR_MIN_STATE_ID:I
    • MAX_STATE_ID

      private static final int MAX_STATE_ID
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official f Lsc;f:I
      intermediary field_33282 Lnet/minecraft/class_2539;field_33282:I
      named MAX_STATE_ID Lnet/minecraft/network/NetworkState;MAX_STATE_ID:I
    • STATES

      private static final NetworkState[] STATES
      Mappings:
      Namespace Name Mixin selector
      official g Lsc;g:[Lsc;
      intermediary field_11693 Lnet/minecraft/class_2539;field_11693:[Lnet/minecraft/class_2539;
      named STATES Lnet/minecraft/network/NetworkState;STATES:[Lnet/minecraft/network/NetworkState;
    • HANDLER_STATE_MAP

      private static final Map<Class<? extends Packet<?>>,NetworkState> HANDLER_STATE_MAP
      Mappings:
      Namespace Name Mixin selector
      official h Lsc;h:Ljava/util/Map;
      intermediary field_11687 Lnet/minecraft/class_2539;field_11687:Ljava/util/Map;
      named HANDLER_STATE_MAP Lnet/minecraft/network/NetworkState;HANDLER_STATE_MAP:Ljava/util/Map;
    • stateId

      private final int stateId
      Mappings:
      Namespace Name Mixin selector
      official i Lsc;i:I
      intermediary field_20594 Lnet/minecraft/class_2539;field_20594:I
      named stateId Lnet/minecraft/network/NetworkState;stateId:I
    • packetHandlers

      private final Map<NetworkSide,? extends NetworkState.PacketHandler<?>> packetHandlers
      Mappings:
      Namespace Name Mixin selector
      official j Lsc;j:Ljava/util/Map;
      intermediary field_20595 Lnet/minecraft/class_2539;field_20595:Ljava/util/Map;
      named packetHandlers Lnet/minecraft/network/NetworkState;packetHandlers:Ljava/util/Map;
  • Constructor Details

    • NetworkState

      private NetworkState(int id, NetworkState.PacketHandlerInitializer initializer)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lsc;<init>(Ljava/lang/String;IILsc$b;)V
      intermediary <init> Lnet/minecraft/class_2539;<init>(Ljava/lang/String;IILnet/minecraft/class_2539$class_4533;)V
      named <init> Lnet/minecraft/network/NetworkState;<init>(Ljava/lang/String;IILnet/minecraft/network/NetworkState$PacketHandlerInitializer;)V
  • Method Details

    • values

      public static NetworkState[] 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 NetworkState 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
    • createPacketHandlerInitializer

      private static NetworkState.PacketHandlerInitializer createPacketHandlerInitializer()
      Mappings:
      Namespace Name Mixin selector
      official b Lsc;b()Lsc$b;
      intermediary method_22308 Lnet/minecraft/class_2539;method_22308()Lnet/minecraft/class_2539$class_4533;
      named createPacketHandlerInitializer Lnet/minecraft/network/NetworkState;createPacketHandlerInitializer()Lnet/minecraft/network/NetworkState$PacketHandlerInitializer;
    • getPacketId

      @Nullable public @Nullable Integer getPacketId(NetworkSide side, Packet<?> packet)
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a(Lui;Luh;)Ljava/lang/Integer;
      intermediary method_10781 Lnet/minecraft/class_2539;method_10781(Lnet/minecraft/class_2598;Lnet/minecraft/class_2596;)Ljava/lang/Integer;
      named getPacketId Lnet/minecraft/network/NetworkState;getPacketId(Lnet/minecraft/network/NetworkSide;Lnet/minecraft/network/Packet;)Ljava/lang/Integer;
    • getPacketIdToPacketMap

      public Int2ObjectMap<Class<? extends Packet<?>>> getPacketIdToPacketMap(NetworkSide side)
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a(Lui;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;
      intermediary method_39498 Lnet/minecraft/class_2539;method_39498(Lnet/minecraft/class_2598;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;
      named getPacketIdToPacketMap Lnet/minecraft/network/NetworkState;getPacketIdToPacketMap(Lnet/minecraft/network/NetworkSide;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;
    • getPacketHandler

      @Nullable public @Nullable Packet<?> getPacketHandler(NetworkSide side, int packetId, PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a(Lui;ILsd;)Luh;
      intermediary method_10783 Lnet/minecraft/class_2539;method_10783(Lnet/minecraft/class_2598;ILnet/minecraft/class_2540;)Lnet/minecraft/class_2596;
      named getPacketHandler Lnet/minecraft/network/NetworkState;getPacketHandler(Lnet/minecraft/network/NetworkSide;ILnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/Packet;
    • getId

      public int getId()
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a()I
      intermediary method_10785 Lnet/minecraft/class_2539;method_10785()I
      named getId Lnet/minecraft/network/NetworkState;getId()I
    • byId

      @Nullable public static @Nullable NetworkState byId(int id)
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a(I)Lsc;
      intermediary method_10782 Lnet/minecraft/class_2539;method_10782(I)Lnet/minecraft/class_2539;
      named byId Lnet/minecraft/network/NetworkState;byId(I)Lnet/minecraft/network/NetworkState;
    • getPacketHandlerState

      public static NetworkState getPacketHandlerState(Packet<?> handler)
      Mappings:
      Namespace Name Mixin selector
      official a Lsc;a(Luh;)Lsc;
      intermediary method_10786 Lnet/minecraft/class_2539;method_10786(Lnet/minecraft/class_2596;)Lnet/minecraft/class_2539;
      named getPacketHandlerState Lnet/minecraft/network/NetworkState;getPacketHandlerState(Lnet/minecraft/network/Packet;)Lnet/minecraft/network/NetworkState;