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 SummaryFieldsModifier and TypeFieldDescriptionprivate final ArgumentSignaturesThe field for theargumentSignaturesrecord component.private final StringThe field for thecommandrecord component.private final LastSeenMessages.UpdateThe field for thelastSeenMessagesrecord component.private final longThe field for thesaltrecord component.private final InstantThe field for thetimeStamprecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionServerboundChatCommandPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatCommandPacketrecord class.ServerboundChatCommandPacket(FriendlyByteBuf p_237932_) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theargumentSignaturesrecord component.command()Returns the value of thecommandrecord component.final booleanIndicates whether some other object is "equal to" this one.voidhandle(ServerGamePacketListener p_237940_) final inthashCode()Returns a hash code value for this object.Returns the value of thelastSeenMessagesrecord component.longsalt()Returns the value of thesaltrecord component.Returns the value of thetimeStamprecord component.final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_237936_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, nextProtocol
- 
Field Details- 
commandThe field for thecommandrecord component.
- 
timeStampThe field for thetimeStamprecord component.
- 
saltprivate final long saltThe field for thesaltrecord component.
- 
argumentSignaturesThe field for theargumentSignaturesrecord component.
- 
lastSeenMessagesThe field for thelastSeenMessagesrecord component.
 
- 
- 
Constructor Details- 
ServerboundChatCommandPacket
- 
ServerboundChatCommandPacketpublic ServerboundChatCommandPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatCommandPacketrecord class.- Parameters:
- command- the value for the- commandrecord component
- timeStamp- the value for the- timeStamprecord component
- salt- the value for the- saltrecord component
- argumentSignatures- the value for the- argumentSignaturesrecord component
- lastSeenMessages- the value for the- lastSeenMessagesrecord component
 
 
- 
- 
Method Details- 
write- Specified by:
- writein interface- Packet<ServerGamePacketListener>
 
- 
handle- Specified by:
- handlein interface- Packet<ServerGamePacketListener>
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
commandReturns the value of thecommandrecord component.- Returns:
- the value of the commandrecord component
 
- 
timeStampReturns the value of thetimeStamprecord component.- Returns:
- the value of the timeStamprecord component
 
- 
saltpublic long salt()Returns the value of thesaltrecord component.- Returns:
- the value of the saltrecord component
 
- 
argumentSignaturesReturns the value of theargumentSignaturesrecord component.- Returns:
- the value of the argumentSignaturesrecord component
 
- 
lastSeenMessagesReturns the value of thelastSeenMessagesrecord component.- Returns:
- the value of the lastSeenMessagesrecord component
 
 
-