Record Class EntityTrackerUpdateS2CPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.play.EntityTrackerUpdateS2CPacket
- Record Components:
id
-trackedValues
-
- All Implemented Interfaces:
Packet<ClientPlayPacketListener>
public record EntityTrackerUpdateS2CPacket(int id, List<DataTracker.SerializedEntry<?>> trackedValues)
extends Record
implements Packet<ClientPlayPacketListener>
- Mappings:
Namespace Name named net/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket
intermediary net/minecraft/class_2739
official afn
named id
intermediary comp_1127
official c
named trackedValues
intermediary comp_1128
official d
-
Field Summary
Modifier and TypeFieldDescriptionstatic final PacketCodec
<RegistryByteBuf, EntityTrackerUpdateS2CPacket> private final int
The field for theid
record component.static final int
private final List
<DataTracker.SerializedEntry<?>> The field for thetrackedValues
record component. -
Constructor Summary
ModifierConstructorDescriptionEntityTrackerUpdateS2CPacket
(int id, List<DataTracker.SerializedEntry<?>> list) private
-
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(ClientPlayPacketListener clientPlayPacketListener) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
id()
Returns the value of theid
record component.private static List
<DataTracker.SerializedEntry<?>> read
(RegistryByteBuf buf) final String
toString()
Returns a string representation of this record class.Returns the value of thetrackedValues
record component.private static void
write
(List<DataTracker.SerializedEntry<?>> trackedValues, RegistryByteBuf buf) private void
write
(RegistryByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.packet.Packet
isWritingErrorSkippable, transitionsNetworkState
-
Field Details
-
id
private final int idThe field for theid
record component. -
trackedValues
The field for thetrackedValues
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;CODEC:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_47979
Lnet/minecraft/class_2739;field_47979:Lnet/minecraft/class_9139;
official a
Lafn;a:Lzn;
-
MARKER_ID
public static final int MARKER_ID- See Also:
- Mappings:
Namespace Name Mixin selector named MARKER_ID
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;MARKER_ID:I
intermediary field_40850
Lnet/minecraft/class_2739;field_40850:I
official b
Lafn;b:I
-
-
Constructor Details
-
EntityTrackerUpdateS2CPacket
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;<init>(Lnet/minecraft/network/RegistryByteBuf;)V
intermediary <init>
Lnet/minecraft/class_2739;<init>(Lnet/minecraft/class_9129;)V
official <init>
Lafn;<init>(Lxa;)V
-
EntityTrackerUpdateS2CPacket
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;<init>(ILjava/util/List;)V
intermediary <init>
Lnet/minecraft/class_2739;<init>(ILjava/util/List;)V
official <init>
Lafn;<init>(ILjava/util/List;)V
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector named write
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;write(Ljava/util/List;Lnet/minecraft/network/RegistryByteBuf;)V
intermediary method_46615
Lnet/minecraft/class_2739;method_46615(Ljava/util/List;Lnet/minecraft/class_9129;)V
official a
Lafn;a(Ljava/util/List;Lxa;)V
-
read
- Mappings:
Namespace Name Mixin selector named read
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;read(Lnet/minecraft/network/RegistryByteBuf;)Ljava/util/List;
intermediary method_46616
Lnet/minecraft/class_2739;method_46616(Lnet/minecraft/class_9129;)Ljava/util/List;
official a
Lafn;a(Lxa;)Ljava/util/List;
-
write
- Mappings:
Namespace Name Mixin selector named write
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;write(Lnet/minecraft/network/RegistryByteBuf;)V
intermediary method_55926
Lnet/minecraft/class_2739;method_55926(Lnet/minecraft/class_9129;)V
official b
Lafn;b(Lxa;)V
-
getPacketId
- Specified by:
getPacketId
in interfacePacket<ClientPlayPacketListener>
- Mappings:
Namespace Name Mixin selector named getPacketId
Lnet/minecraft/network/packet/Packet;getPacketId()Lnet/minecraft/network/packet/PacketType;
intermediary method_55846
Lnet/minecraft/class_2596;method_55846()Lnet/minecraft/class_9145;
official a
Lzw;a()Lzy;
-
apply
- Specified by:
apply
in interfacePacket<ClientPlayPacketListener>
- Mappings:
Namespace Name Mixin selector named apply
Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;apply(Lnet/minecraft/network/listener/ClientPlayPacketListener;)V
intermediary method_11808
Lnet/minecraft/class_2739;method_11808(Lnet/minecraft/class_2602;)V
official a
Lafn;a(Laci;)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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
id
public int id()Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
trackedValues
Returns the value of thetrackedValues
record component.- Returns:
- the value of the
trackedValues
record component
-