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 BitSet
The field for theacknowledged
record component.private final byte
The field for thechecksum
record component.static final byte
private final int
The field for theoffset
record component. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aUpdate
record class.Update
(FriendlyByteBuf p_242184_) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theacknowledged
record component.byte
checksum()
Returns the value of thechecksum
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
offset()
Returns the value of theoffset
record component.final String
toString()
Returns a string representation of this record class.boolean
verifyChecksum
(LastSeenMessages p_412643_) void
write
(FriendlyByteBuf p_242221_)
-
Field Details
-
offset
private final int offsetThe field for theoffset
record component. -
acknowledged
The field for theacknowledged
record component. -
checksum
private final byte checksumThe field for thechecksum
record component. -
IGNORE_CHECKSUM
public static final byte IGNORE_CHECKSUM- See Also:
-
-
Constructor Details
-
Update
-
Update
Creates an instance of aUpdate
record class.- Parameters:
offset
- the value for theoffset
record componentacknowledged
- the value for theacknowledged
record componentchecksum
- the value for thechecksum
record 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 theoffset
record component.- Returns:
- the value of the
offset
record component
-
acknowledged
Returns the value of theacknowledged
record component.- Returns:
- the value of the
acknowledged
record component
-
checksum
public byte checksum()Returns the value of thechecksum
record component.- Returns:
- the value of the
checksum
record component
-