Record Class ServerboundChatCommandSignedPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ServerboundChatCommandSignedPacket
- All Implemented Interfaces:
- Packet<ServerGamePacketListener>
public record ServerboundChatCommandSignedPacket(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.static final StreamCodec<FriendlyByteBuf, ServerboundChatCommandSignedPacket> private final InstantThe field for thetimeStamprecord component.
- 
Constructor SummaryConstructorsModifierConstructorDescriptionServerboundChatCommandSignedPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatCommandSignedPacketrecord class.private
- 
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_338886_) 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.type()private voidwrite(FriendlyByteBuf p_338860_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.PacketisSkippable, isTerminal
- 
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.
- 
STREAM_CODEC
 
- 
- 
Constructor Details- 
ServerboundChatCommandSignedPacket
- 
ServerboundChatCommandSignedPacketpublic ServerboundChatCommandSignedPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatCommandSignedPacketrecord 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
- 
type- Specified by:
- typein 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
 
 
-