Record Class ClientboundDisguisedChatPacket

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

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

    • message

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

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

    • ClientboundDisguisedChatPacket

      public ClientboundDisguisedChatPacket(FriendlyByteBuf p_249018_)
    • ClientboundDisguisedChatPacket

      public ClientboundDisguisedChatPacket(Component message, ChatType.BoundNetwork chatType)
      Creates an instance of a ClientboundDisguisedChatPacket 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_250975_)
      Specified by:
      write in interface Packet<ClientGamePacketListener>
    • handle

      public void handle(ClientGamePacketListener p_251953_)
      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. 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 Component 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