Package net.minecraft.network.message
Record Class LastSeenMessageList
java.lang.Object
java.lang.Record
net.minecraft.network.message.LastSeenMessageList
- Record Components:
entries
-
A list of messages a client has seen.
- Mappings:
Namespace Name official rw
intermediary net/minecraft/class_7635
named net/minecraft/network/message/LastSeenMessageList
official c
intermediary comp_965
named entries
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final record
A record of messages acknowledged by a client.static final record
A pair of a player's UUID and the signature of the last message they saw, used as an entry ofLastSeenMessageList
. -
Field Summary
Modifier and TypeFieldDescriptionstatic LastSeenMessageList
private final List<LastSeenMessageList.Entry>
The field for theentries
record component.static final int
-
Constructor Summary
ConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionentries()
Returns the value of theentries
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.final String
toString()
Returns a string representation of this record class.void
write
(DataOutput output) void
write
(PacketByteBuf buf)
-
Field Details
-
entries
The field for theentries
record component. -
EMPTY
- Mappings:
Namespace Name Mixin selector official a
Lrw;a:Lrw;
intermediary field_39883
Lnet/minecraft/class_7635;field_39883:Lnet/minecraft/class_7635;
named EMPTY
Lnet/minecraft/network/message/LastSeenMessageList;EMPTY:Lnet/minecraft/network/message/LastSeenMessageList;
-
MAX_ENTRIES
public static final int MAX_ENTRIES- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lrw;b:I
intermediary field_39884
Lnet/minecraft/class_7635;field_39884:I
named MAX_ENTRIES
Lnet/minecraft/network/message/LastSeenMessageList;MAX_ENTRIES:I
-
-
Constructor Details
-
LastSeenMessageList
- Mappings:
Namespace Name Mixin selector official <init>
Lrw;<init>(Lqx;)V
intermediary <init>
Lnet/minecraft/class_7635;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/message/LastSeenMessageList;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
LastSeenMessageList
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector official a
Lrw;a(Lqx;)V
intermediary method_44981
Lnet/minecraft/class_7635;method_44981(Lnet/minecraft/class_2540;)V
named write
Lnet/minecraft/network/message/LastSeenMessageList;write(Lnet/minecraft/network/PacketByteBuf;)V
-
write
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official a
Lrw;a(Ljava/io/DataOutput;)V
intermediary method_44980
Lnet/minecraft/class_7635;method_44980(Ljava/io/DataOutput;)V
named write
Lnet/minecraft/network/message/LastSeenMessageList;write(Ljava/io/DataOutput;)V
-
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)
. -
entries
Returns the value of theentries
record component.- Returns:
- the value of the
entries
record component
-