Record Class ServerboundChatAckPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ServerboundChatAckPacket
- All Implemented Interfaces:
Packet<ServerGamePacketListener>
public record ServerboundChatAckPacket(LastSeenMessages.Update lastSeenMessages)
extends Record
implements Packet<ServerGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final LastSeenMessages.UpdateThe field for thelastSeenMessagesrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionServerboundChatAckPacket(LastSeenMessages.Update lastSeenMessages) Creates an instance of aServerboundChatAckPacketrecord class.ServerboundChatAckPacket(FriendlyByteBuf p_242339_) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.voidhandle(ServerGamePacketListener p_242391_) final inthashCode()Returns a hash code value for this object.Returns the value of thelastSeenMessagesrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_242345_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.protocol.Packet
isSkippable
-
Field Details
-
lastSeenMessages
The field for thelastSeenMessagesrecord component.
-
-
Constructor Details
-
ServerboundChatAckPacket
-
ServerboundChatAckPacket
Creates an instance of aServerboundChatAckPacketrecord class.- Parameters:
lastSeenMessages- 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. All components in this record class are compared withObjects::equals(Object,Object). -
lastSeenMessages
Returns the value of thelastSeenMessagesrecord component.- Returns:
- the value of the
lastSeenMessagesrecord component
-