Record Class LastSeenMessages.Update
java.lang.Object
java.lang.Record
net.minecraft.network.chat.LastSeenMessages.Update
- Enclosing class:
LastSeenMessages
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BitSetThe field for theacknowledgedrecord component.private final byteThe field for thechecksumrecord component.static final byteprivate final intThe field for theoffsetrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theacknowledgedrecord component.bytechecksum()Returns the value of thechecksumrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intoffset()Returns the value of theoffsetrecord component.final StringtoString()Returns a string representation of this record class.booleanverifyChecksum(LastSeenMessages lastSeen) voidwrite(FriendlyByteBuf output)
-
Field Details
-
offset
private final int offsetThe field for theoffsetrecord component. -
acknowledged
The field for theacknowledgedrecord component. -
checksum
private final byte checksumThe field for thechecksumrecord component. -
IGNORE_CHECKSUM
public static final byte IGNORE_CHECKSUM- See Also:
-
-
Constructor Details
-
Update
-
Update
Creates an instance of aUpdaterecord class.- Parameters:
offset- the value for theoffsetrecord componentacknowledged- the value for theacknowledgedrecord componentchecksum- the value for thechecksumrecord component
-
-
Method Details
-
write
-
verifyChecksum
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
offset
public int offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
acknowledged
Returns the value of theacknowledgedrecord component.- Returns:
- the value of the
acknowledgedrecord component
-
checksum
public byte checksum()Returns the value of thechecksumrecord component.- Returns:
- the value of the
checksumrecord component
-