Package net.minecraft.util.registry
Record Class DynamicRegistryManager.Entry<T>
java.lang.Object
java.lang.Record
net.minecraft.util.registry.DynamicRegistryManager.Entry<T>
- Record Components:
key
-value
-
- Enclosing interface:
DynamicRegistryManager
public static record DynamicRegistryManager.Entry<T>(RegistryKey<? extends Registry<T>> key, Registry<T> value)
extends Record
- Mappings:
Namespace Name official hn$d
intermediary net/minecraft/class_5455$class_6892
named net/minecraft/util/registry/DynamicRegistryManager$Entry
official a
intermediary comp_350
named key
official b
intermediary comp_351
named value
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.private DynamicRegistryManager.Entry<T>
freeze()
final int
hashCode()
Returns a hash code value for this object.RegistryKey<? extends Registry<T>>
key()
Returns the value of thekey
record component.private static <T,
R extends Registry<? extends T>>
DynamicRegistryManager.Entry<T>of
(Map.Entry<? extends RegistryKey<? extends Registry<?>>, R> entry) private static <T> DynamicRegistryManager.Entry<T>
of
(RegistryEntry.Reference<? extends Registry<? extends T>> entry) private static <T> DynamicRegistryManager.Entry<T>
of
(RegistryKey<? extends Registry<?>> key, Registry<?> value) final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Field Details
-
Constructor Details
-
Entry
-
-
Method Details
-
of
private static <T,R extends Registry<? extends T>> DynamicRegistryManager.Entry<T> of(Map.Entry<? extends RegistryKey<? extends Registry<?>>, R> entry) - Mappings:
Namespace Name Mixin selector official a
Lhn$d;a(Ljava/util/Map$Entry;)Lhn$d;
intermediary method_40330
Lnet/minecraft/class_5455$class_6892;method_40330(Ljava/util/Map$Entry;)Lnet/minecraft/class_5455$class_6892;
named of
Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;of(Ljava/util/Map$Entry;)Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;
-
of
private static <T> DynamicRegistryManager.Entry<T> of(RegistryEntry.Reference<? extends Registry<? extends T>> entry) - Mappings:
Namespace Name Mixin selector official a
Lhn$d;a(Lhc$c;)Lhn$d;
intermediary method_40329
Lnet/minecraft/class_5455$class_6892;method_40329(Lnet/minecraft/class_6880$class_6883;)Lnet/minecraft/class_5455$class_6892;
named of
Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;of(Lnet/minecraft/util/registry/RegistryEntry$Reference;)Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;
-
of
private static <T> DynamicRegistryManager.Entry<T> of(RegistryKey<? extends Registry<?>> key, Registry<?> value) - Mappings:
Namespace Name Mixin selector official a
Lhn$d;a(Laba;Lhm;)Lhn$d;
intermediary method_40331
Lnet/minecraft/class_5455$class_6892;method_40331(Lnet/minecraft/class_5321;Lnet/minecraft/class_2378;)Lnet/minecraft/class_5455$class_6892;
named of
Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;of(Lnet/minecraft/util/registry/RegistryKey;Lnet/minecraft/util/registry/Registry;)Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;
-
freeze
- Mappings:
Namespace Name Mixin selector official c
Lhn$d;c()Lhn$d;
intermediary method_40332
Lnet/minecraft/class_5455$class_6892;method_40332()Lnet/minecraft/class_5455$class_6892;
named freeze
Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;freeze()Lnet/minecraft/util/registry/DynamicRegistryManager$Entry;
-
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)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-