Record Class ServerboundChatCommandPacket

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

public record ServerboundChatCommandPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) extends Record implements Packet<ServerGamePacketListener>
  • Field Details

    • command

      private final String command
      The field for the command record component.
    • timeStamp

      private final Instant timeStamp
      The field for the timeStamp record component.
    • salt

      private final long salt
      The field for the salt record component.
    • argumentSignatures

      private final ArgumentSignatures argumentSignatures
      The field for the argumentSignatures record component.
    • lastSeenMessages

      private final LastSeenMessages.Update lastSeenMessages
      The field for the lastSeenMessages record component.
  • Constructor Details

    • ServerboundChatCommandPacket

      public ServerboundChatCommandPacket(FriendlyByteBuf p_237932_)
    • ServerboundChatCommandPacket

      public ServerboundChatCommandPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages)
      Creates an instance of a ServerboundChatCommandPacket record class.
      Parameters:
      command - the value for the command record component
      timeStamp - the value for the timeStamp record component
      salt - the value for the salt record component
      argumentSignatures - the value for the argumentSignatures record component
      lastSeenMessages - the value for the lastSeenMessages record component
  • Method Details

    • write

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

      public void handle(ServerGamePacketListener p_237940_)
      Specified by:
      handle in interface Packet<ServerGamePacketListener>
    • 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.
    • command

      public String command()
      Returns the value of the command record component.
      Returns:
      the value of the command record component
    • timeStamp

      public Instant timeStamp()
      Returns the value of the timeStamp record component.
      Returns:
      the value of the timeStamp record component
    • salt

      public long salt()
      Returns the value of the salt record component.
      Returns:
      the value of the salt record component
    • argumentSignatures

      public ArgumentSignatures argumentSignatures()
      Returns the value of the argumentSignatures record component.
      Returns:
      the value of the argumentSignatures record component
    • lastSeenMessages

      public LastSeenMessages.Update lastSeenMessages()
      Returns the value of the lastSeenMessages record component.
      Returns:
      the value of the lastSeenMessages record component