Package net.minecraft.network.chat
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
ConstructorsConstructorDescriptionCreates an instance of aUpdaterecord class.Update(FriendlyByteBuf p_242184_) -
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 pMessages) voidwrite(FriendlyByteBuf pBuffer)
-
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
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 '=='. -
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
-