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 Summary
FieldsModifier 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 Summary
ConstructorsConstructorDescriptionServerboundChatCommandPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatCommandPacketrecord class.ServerboundChatCommandPacket(FriendlyByteBuf p_237932_) -
Method Summary
Modifier 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.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, nextProtocol
-
Field Details
-
command
The field for thecommandrecord component. -
timeStamp
The field for thetimeStamprecord component. -
salt
private final long saltThe field for thesaltrecord component. -
argumentSignatures
The field for theargumentSignaturesrecord component. -
lastSeenMessages
The field for thelastSeenMessagesrecord component.
-
-
Constructor Details
-
ServerboundChatCommandPacket
-
ServerboundChatCommandPacket
public ServerboundChatCommandPacket(String command, Instant timeStamp, long salt, ArgumentSignatures argumentSignatures, LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatCommandPacketrecord class.- Parameters:
command- the value for thecommandrecord componenttimeStamp- the value for thetimeStamprecord componentsalt- the value for thesaltrecord componentargumentSignatures- the value for theargumentSignaturesrecord componentlastSeenMessages- the value for thelastSeenMessagesrecord component
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ServerGamePacketListener>
-
handle
- Specified by:
handlein interfacePacket<ServerGamePacketListener>
-
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. -
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. -
equals
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 withObjects::equals(Object,Object); primitive components are compared with '=='. -
command
Returns the value of thecommandrecord component.- Returns:
- the value of the
commandrecord component
-
timeStamp
Returns the value of thetimeStamprecord component.- Returns:
- the value of the
timeStamprecord component
-
salt
public long salt()Returns the value of thesaltrecord component.- Returns:
- the value of the
saltrecord component
-
argumentSignatures
Returns the value of theargumentSignaturesrecord component.- Returns:
- the value of the
argumentSignaturesrecord component
-
lastSeenMessages
Returns the value of thelastSeenMessagesrecord component.- Returns:
- the value of the
lastSeenMessagesrecord component
-