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 named net/minecraft/entity/data/DataTracker$SerializedEntry
intermediary net/minecraft/class_2945$class_7834
official ako$c
named id
intermediary comp_1115
official a
named handler
intermediary comp_1116
official b
named value
intermediary comp_1117
official c
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.static DataTracker.SerializedEntry
<?> fromBuf
(RegistryByteBuf buf, int id) private static <T> DataTracker.SerializedEntry
<T> fromBuf
(RegistryByteBuf 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
(RegistryByteBuf buf)
-
Field Details
-
Constructor Details
-
SerializedEntry
-
-
Method Details
-
of
- Mappings:
Namespace Name Mixin selector named of
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;of(Lnet/minecraft/entity/data/TrackedData;Ljava/lang/Object;)Lnet/minecraft/entity/data/DataTracker$SerializedEntry;
intermediary method_46360
Lnet/minecraft/class_2945$class_7834;method_46360(Lnet/minecraft/class_2940;Ljava/lang/Object;)Lnet/minecraft/class_2945$class_7834;
official a
Lako$c;a(Lakk;Ljava/lang/Object;)Lako$c;
-
write
- Mappings:
Namespace Name Mixin selector named write
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;write(Lnet/minecraft/network/RegistryByteBuf;)V
intermediary method_46361
Lnet/minecraft/class_2945$class_7834;method_46361(Lnet/minecraft/class_9129;)V
official a
Lako$c;a(Lxa;)V
-
fromBuf
- Mappings:
Namespace Name Mixin selector named fromBuf
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;fromBuf(Lnet/minecraft/network/RegistryByteBuf;I)Lnet/minecraft/entity/data/DataTracker$SerializedEntry;
intermediary method_46362
Lnet/minecraft/class_2945$class_7834;method_46362(Lnet/minecraft/class_9129;I)Lnet/minecraft/class_2945$class_7834;
official a
Lako$c;a(Lxa;I)Lako$c;
-
fromBuf
private static <T> DataTracker.SerializedEntry<T> fromBuf(RegistryByteBuf buf, int id, TrackedDataHandler<T> handler) - Mappings:
Namespace Name Mixin selector named fromBuf
Lnet/minecraft/entity/data/DataTracker$SerializedEntry;fromBuf(Lnet/minecraft/network/RegistryByteBuf;ILnet/minecraft/entity/data/TrackedDataHandler;)Lnet/minecraft/entity/data/DataTracker$SerializedEntry;
intermediary method_46363
Lnet/minecraft/class_2945$class_7834;method_46363(Lnet/minecraft/class_9129;ILnet/minecraft/class_2941;)Lnet/minecraft/class_2945$class_7834;
official a
Lako$c;a(Lxa;ILakl;)Lako$c;
-
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
-