Record Class ClientboundRespawnPacket

java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundRespawnPacket
All Implemented Interfaces:
Packet<ClientGamePacketListener>

public record ClientboundRespawnPacket(CommonPlayerSpawnInfo commonPlayerSpawnInfo, byte dataToKeep) extends Record implements Packet<ClientGamePacketListener>
  • Field Details

    • commonPlayerSpawnInfo

      private final CommonPlayerSpawnInfo commonPlayerSpawnInfo
      The field for the commonPlayerSpawnInfo record component.
    • dataToKeep

      private final byte dataToKeep
      The field for the dataToKeep record component.
    • KEEP_ATTRIBUTES

      public static final byte KEEP_ATTRIBUTES
      See Also:
    • KEEP_ENTITY_DATA

      public static final byte KEEP_ENTITY_DATA
      See Also:
    • KEEP_ALL_DATA

      public static final byte KEEP_ALL_DATA
      See Also:
  • Constructor Details

    • ClientboundRespawnPacket

      public ClientboundRespawnPacket(FriendlyByteBuf p_179191_)
    • ClientboundRespawnPacket

      public ClientboundRespawnPacket(CommonPlayerSpawnInfo commonPlayerSpawnInfo, byte dataToKeep)
      Creates an instance of a ClientboundRespawnPacket record class.
      Parameters:
      commonPlayerSpawnInfo - the value for the commonPlayerSpawnInfo record component
      dataToKeep - the value for the dataToKeep record component
  • Method Details

    • write

      public void write(FriendlyByteBuf p_132954_)
      Specified by:
      write in interface Packet<ClientGamePacketListener>
    • handle

      public void handle(ClientGamePacketListener p_132951_)
      Specified by:
      handle in interface Packet<ClientGamePacketListener>
    • shouldKeep

      public boolean shouldKeep(byte p_263573_)
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • commonPlayerSpawnInfo

      public CommonPlayerSpawnInfo commonPlayerSpawnInfo()
      Returns the value of the commonPlayerSpawnInfo record component.
      Returns:
      the value of the commonPlayerSpawnInfo record component
    • dataToKeep

      public byte dataToKeep()
      Returns the value of the dataToKeep record component.
      Returns:
      the value of the dataToKeep record component