Record Class ClientboundPlayerChatPacket

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

public record ClientboundPlayerChatPacket(PlayerChatMessage message, ChatType.BoundNetwork chatType) extends Record implements Packet<ClientGamePacketListener>
  • Field Details

    • message

      private final PlayerChatMessage message
      The field for the message record component.
    • chatType

      private final ChatType.BoundNetwork chatType
      The field for the chatType record component.
  • Constructor Details

    • ClientboundPlayerChatPacket

      public ClientboundPlayerChatPacket(FriendlyByteBuf p_237741_)
    • ClientboundPlayerChatPacket

      public ClientboundPlayerChatPacket(PlayerChatMessage message, ChatType.BoundNetwork chatType)
      Creates an instance of a ClientboundPlayerChatPacket record class.
      Parameters:
      message - the value for the message record component
      chatType - the value for the chatType record component
  • Method Details

    • write

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

      public void handle(ClientGamePacketListener p_237759_)
      Specified by:
      handle in interface Packet<ClientGamePacketListener>
    • isSkippable

      public boolean isSkippable()
      Specified by:
      isSkippable in interface Packet<ClientGamePacketListener>
    • resolveChatType

      public Optional<ChatType.Bound> resolveChatType(RegistryAccess p_242874_)
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • message

      public PlayerChatMessage message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component
    • chatType

      public ChatType.BoundNetwork chatType()
      Returns the value of the chatType record component.
      Returns:
      the value of the chatType record component