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.Bound chatType) extends Record implements Packet<ClientGamePacketListener>
  • Field Details Link icon

    • sender Link icon

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

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

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

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

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

      private final FilterMask filterMask
      The field for the filterMask record component.
    • chatType Link icon

      private final ChatType.Bound chatType
      The field for the chatType record component.
    • STREAM_CODEC Link icon

  • Constructor Details Link icon

    • ClientboundPlayerChatPacket Link icon

      private ClientboundPlayerChatPacket(RegistryFriendlyByteBuf p_329037_)
    • ClientboundPlayerChatPacket Link icon

      public ClientboundPlayerChatPacket(UUID sender, int index, @Nullable MessageSignature signature, SignedMessageBody.Packed body, @Nullable Component unsignedContent, FilterMask filterMask, ChatType.Bound 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 Link icon

    • write Link icon

      private void write(RegistryFriendlyByteBuf p_329687_)
    • type Link icon

      Specified by:
      type in interface Packet<ClientGamePacketListener>
    • handle Link icon

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

      public boolean isSkippable()
      Specified by:
      isSkippable in interface Packet<ClientGamePacketListener>
    • toString Link icon

      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 Link icon

      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 Link icon

      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 Link icon

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

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

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

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

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

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

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