Package net.minecraft.network.message
Record Class LastSeenMessageList.Indexed
java.lang.Object
java.lang.Record
net.minecraft.network.message.LastSeenMessageList.Indexed
- Record Components:
buf
-
- Enclosing class:
LastSeenMessageList
public static record LastSeenMessageList.Indexed(List<MessageSignatureData.Indexed> buf)
extends Record
- Mappings:
Namespace Name official sy$a
intermediary net/minecraft/class_7635$class_7815
named net/minecraft/network/message/LastSeenMessageList$Indexed
official b
intermediary comp_1070
named buf
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<MessageSignatureData.Indexed>
The field for thebuf
record component.static final LastSeenMessageList.Indexed
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuf()
Returns the value of thebuf
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.unpack
(MessageSignatureStorage storage) void
write
(PacketByteBuf buf)
-
Field Details
-
buf
The field for thebuf
record component. -
EMPTY
- Mappings:
Namespace Name Mixin selector official a
Lsy$a;a:Lsy$a;
intermediary field_40675
Lnet/minecraft/class_7635$class_7815;field_40675:Lnet/minecraft/class_7635$class_7815;
named EMPTY
Lnet/minecraft/network/message/LastSeenMessageList$Indexed;EMPTY:Lnet/minecraft/network/message/LastSeenMessageList$Indexed;
-
-
Constructor Details
-
Indexed
- Mappings:
Namespace Name Mixin selector official <init>
Lsy$a;<init>(Lsd;)V
intermediary <init>
Lnet/minecraft/class_7635$class_7815;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/message/LastSeenMessageList$Indexed;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
Indexed
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector official a
Lsy$a;a(Lsd;)V
intermediary method_46260
Lnet/minecraft/class_7635$class_7815;method_46260(Lnet/minecraft/class_2540;)V
named write
Lnet/minecraft/network/message/LastSeenMessageList$Indexed;write(Lnet/minecraft/network/PacketByteBuf;)V
-
unpack
- Mappings:
Namespace Name Mixin selector official a
Lsy$a;a(Lte;)Ljava/util/Optional;
intermediary method_46261
Lnet/minecraft/class_7635$class_7815;method_46261(Lnet/minecraft/class_7561;)Ljava/util/Optional;
named unpack
Lnet/minecraft/network/message/LastSeenMessageList$Indexed;unpack(Lnet/minecraft/network/message/MessageSignatureStorage;)Ljava/util/Optional;
-
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)
. -
buf
Returns the value of thebuf
record component.- Returns:
- the value of the
buf
record component
-