Record Class ClientboundPlayerChatPacket

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

public record ClientboundPlayerChatPacket(UUID sender, int index, @Nullable MessageSignature signature, SignedMessageBody.Packed body, @Nullable Component unsignedContent, FilterMask filterMask, ChatType.BoundNetwork chatType) extends Record implements Packet<ClientGamePacketListener>
  • Field Details

    • sender

      private final UUID sender
      The field for the sender record component.
    • index

      private final int index
      The field for the index record component.
    • signature

      @Nullable private final MessageSignature signature
      The field for the signature record component.
    • body

      private final SignedMessageBody.Packed body
      The field for the body record component.
    • unsignedContent

      @Nullable private final Component unsignedContent
      The field for the unsignedContent record component.
    • filterMask

      private final FilterMask filterMask
      The field for the filterMask 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(UUID sender, int index, @Nullable MessageSignature signature, SignedMessageBody.Packed body, @Nullable Component unsignedContent, FilterMask filterMask, ChatType.BoundNetwork chatType)
      Creates an instance of a ClientboundPlayerChatPacket record class.
      Parameters:
      sender - the value for the sender record component
      index - the value for the index record component
      signature - the value for the signature record component
      body - the value for the body record component
      unsignedContent - the value for the unsignedContent record component
      filterMask - the value for the filterMask 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>
    • 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.
    • sender

      public UUID sender()
      Returns the value of the sender record component.
      Returns:
      the value of the sender record component
    • index

      public int index()
      Returns the value of the index record component.
      Returns:
      the value of the index record component
    • signature

      @Nullable public MessageSignature signature()
      Returns the value of the signature record component.
      Returns:
      the value of the signature record component
    • body

      public SignedMessageBody.Packed body()
      Returns the value of the body record component.
      Returns:
      the value of the body record component
    • unsignedContent

      @Nullable public Component unsignedContent()
      Returns the value of the unsignedContent record component.
      Returns:
      the value of the unsignedContent record component
    • filterMask

      public FilterMask filterMask()
      Returns the value of the filterMask record component.
      Returns:
      the value of the filterMask record component
    • chatType

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