Package net.minecraft.entity.data
Record Class DataTracker.SerializedEntry<T>
java.lang.Object
java.lang.Record
net.minecraft.entity.data.DataTracker.SerializedEntry<T>
- Record Components:
id
-handler
-value
-
- Enclosing class:
DataTracker
public static record DataTracker.SerializedEntry<T>(int id, TrackedDataHandler<T> handler, T value)
extends Record
- Mappings:
Namespace Name official aeh$b
intermediary net/minecraft/class_2945$class_7834
named net/minecraft/entity/data/DataTracker$SerializedEntry
official a
intermediary comp_1115
named id
official b
intermediary comp_1116
named handler
official c
intermediary comp_1117
named value
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.static DataTracker.SerializedEntry<?>
fromBuf
(PacketByteBuf buf, int id) private static <T> DataTracker.SerializedEntry<T>
fromBuf
(PacketByteBuf buf, int id, TrackedDataHandler<T> handler) handler()
Returns the value of thehandler
record component.final int
hashCode()
Returns a hash code value for this object.int
id()
Returns the value of theid
record component.static <T> DataTracker.SerializedEntry<T>
of
(TrackedData<T> data, T value) final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.void
write
(PacketByteBuf buf)
-
Field Details
-
Constructor Details
-
SerializedEntry
-
-
Method Details
-
of
- Mappings:
Namespace Name Mixin selector official a
Laeh$b;a(Laee;Ljava/lang/Object;)Laeh$b;
intermediary method_46360
Lnet/minecraft/class_2945$class_7834;method_46360(Lnet/minecraft/class_2940;Ljava/lang/Object;)Lnet/minecraft/class_2945$class_7834;
named of
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;of(Lnet/minecraft/entity/data/TrackedData;Ljava/lang/Object;)Lnet/minecraft/entity/data/DataTracker$SerializedEntry;
-
write
- Mappings:
Namespace Name Mixin selector official a
Laeh$b;a(Lso;)V
intermediary method_46361
Lnet/minecraft/class_2945$class_7834;method_46361(Lnet/minecraft/class_2540;)V
named write
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;write(Lnet/minecraft/network/PacketByteBuf;)V
-
fromBuf
- Mappings:
Namespace Name Mixin selector official a
Laeh$b;a(Lso;I)Laeh$b;
intermediary method_46362
Lnet/minecraft/class_2945$class_7834;method_46362(Lnet/minecraft/class_2540;I)Lnet/minecraft/class_2945$class_7834;
named fromBuf
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;fromBuf(Lnet/minecraft/network/PacketByteBuf;I)Lnet/minecraft/entity/data/DataTracker$SerializedEntry;
-
fromBuf
private static <T> DataTracker.SerializedEntry<T> fromBuf(PacketByteBuf buf, int id, TrackedDataHandler<T> handler) - Mappings:
Namespace Name Mixin selector official a
Laeh$b;a(Lso;ILaef;)Laeh$b;
intermediary method_46363
Lnet/minecraft/class_2945$class_7834;method_46363(Lnet/minecraft/class_2540;ILnet/minecraft/class_2941;)Lnet/minecraft/class_2945$class_7834;
named fromBuf
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;fromBuf(Lnet/minecraft/network/PacketByteBuf;ILnet/minecraft/entity/data/TrackedDataHandler;)Lnet/minecraft/entity/data/DataTracker$SerializedEntry;
-
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
-
handler
Returns the value of thehandler
record component.- Returns:
- the value of the
handler
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-