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 intermediary net/minecraft/class_2739official xwnamed net/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacketintermediary comp_1127official bnamed idintermediary comp_1128official cnamed trackedValues
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for theidrecord component.static final intprivate final List<DataTracker.SerializedEntry<?>>The field for thetrackedValuesrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEntityTrackerUpdateS2CPacket(int id, List<DataTracker.SerializedEntry<?>> list) -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ClientPlayPacketListener clientPlayPacketListener) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intid()Returns the value of theidrecord component.private static List<DataTracker.SerializedEntry<?>>read(PacketByteBuf buf) final StringtoString()Returns a string representation of this record class.Returns the value of thetrackedValuesrecord component.private static voidwrite(List<DataTracker.SerializedEntry<?>> trackedValues, PacketByteBuf buf) voidwrite(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.packet.Packet
isWritingErrorSkippable
-
Field Details
-
id
private final int idThe field for theidrecord component. -
trackedValues
The field for thetrackedValuesrecord component. -
MARKER_ID
public static final int MARKER_ID- See Also:
- Mappings:
Namespace Name Mixin selector intermediary field_40850Lnet/minecraft/class_2739;field_40850:Iofficial aLxw;a:Inamed MARKER_IDLnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;MARKER_ID:I
-
-
Constructor Details
-
EntityTrackerUpdateS2CPacket
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_2739;<init>(Lnet/minecraft/class_2540;)Vofficial <init>Lxw;<init>(Lsf;)Vnamed <init>Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
EntityTrackerUpdateS2CPacket
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_2739;<init>(ILjava/util/List;)Vofficial <init>Lxw;<init>(ILjava/util/List;)Vnamed <init>Lnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;<init>(ILjava/util/List;)V
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector intermediary method_46615Lnet/minecraft/class_2739;method_46615(Ljava/util/List;Lnet/minecraft/class_2540;)Vofficial aLxw;a(Ljava/util/List;Lsf;)Vnamed writeLnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;write(Ljava/util/List;Lnet/minecraft/network/PacketByteBuf;)V
-
read
- Mappings:
Namespace Name Mixin selector intermediary method_46616Lnet/minecraft/class_2739;method_46616(Lnet/minecraft/class_2540;)Ljava/util/List;official bLxw;b(Lsf;)Ljava/util/List;named readLnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;read(Lnet/minecraft/network/PacketByteBuf;)Ljava/util/List;
-
write
- Specified by:
writein interfacePacket<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector intermediary method_11052Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)Vofficial aLuo;a(Lsf;)Vnamed writeLnet/minecraft/network/packet/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
applyin interfacePacket<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector intermediary method_11808Lnet/minecraft/class_2739;method_11808(Lnet/minecraft/class_2602;)Vofficial aLxw;a(Lur;)Vnamed applyLnet/minecraft/network/packet/s2c/play/EntityTrackerUpdateS2CPacket;apply(Lnet/minecraft/network/listener/ClientPlayPacketListener;)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 theidrecord component.- Returns:
- the value of the
idrecord component
-
trackedValues
Returns the value of thetrackedValuesrecord component.- Returns:
- the value of the
trackedValuesrecord component
-