Package net.minecraft.network.chat
Record Class LastSeenMessages.Update
java.lang.Object
java.lang.Record
net.minecraft.network.chat.LastSeenMessages.Update
- Enclosing class:
- LastSeenMessages
public static record LastSeenMessages.Update(LastSeenMessages lastSeen, Optional<LastSeenMessages.Entry> lastReceived)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<LastSeenMessages.Entry>The field for thelastReceivedrecord component.private final LastSeenMessagesThe field for thelastSeenrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionUpdate(LastSeenMessages lastSeen, Optional<LastSeenMessages.Entry> lastReceived) Creates an instance of aUpdaterecord class.Update(FriendlyByteBuf p_242184_) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thelastReceivedrecord component.lastSeen()Returns the value of thelastSeenrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_242221_)
-
Field Details
-
lastSeen
The field for thelastSeenrecord component. -
lastReceived
The field for thelastReceivedrecord component.
-
-
Constructor Details
-
Update
-
Update
Creates an instance of aUpdaterecord class.- Parameters:
lastSeen- the value for thelastSeenrecord componentlastReceived- the value for thelastReceivedrecord component
-
-
Method Details
-
write
-
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). -
lastSeen
Returns the value of thelastSeenrecord component.- Returns:
- the value of the
lastSeenrecord component
-
lastReceived
Returns the value of thelastReceivedrecord component.- Returns:
- the value of the
lastReceivedrecord component
-