Package net.minecraft.util.dynamic
Record Class RegistryLoader.LoaderAccess
java.lang.Object
java.lang.Record
net.minecraft.util.dynamic.RegistryLoader.LoaderAccess
- Record Components:
dynamicRegistryManager
-loader
-
- Enclosing class:
RegistryLoader
public static record RegistryLoader.LoaderAccess(DynamicRegistryManager.Mutable dynamicRegistryManager, RegistryLoader loader)
extends Record
- Mappings:
Namespace Name official aax$a
intermediary net/minecraft/class_6900$class_6901
named net/minecraft/util/dynamic/RegistryLoader$LoaderAccess
official a
intermediary comp_354
named dynamicRegistryManager
official b
intermediary comp_355
named loader
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DynamicRegistryManager.Mutable
The field for thedynamicRegistryManager
record component.private final RegistryLoader
The field for theloader
record component. -
Constructor Summary
ConstructorDescriptionLoaderAccess
(DynamicRegistryManager.Mutable mutable, RegistryLoader registryLoader) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedynamicRegistryManager
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.<E> com.mojang.serialization.DataResult<? extends Registry<E>>
load
(RegistryKey<? extends Registry<E>> registryRef, com.mojang.serialization.Codec<E> codec, com.mojang.serialization.DynamicOps<JsonElement> ops) <E> com.mojang.serialization.DataResult<RegistryEntry<E>>
load
(RegistryKey<? extends Registry<E>> registryRef, com.mojang.serialization.Codec<E> codec, RegistryKey<E> entryKey, com.mojang.serialization.DynamicOps<JsonElement> ops) loader()
Returns the value of theloader
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
dynamicRegistryManager
The field for thedynamicRegistryManager
record component. -
loader
The field for theloader
record component.
-
-
Constructor Details
-
LoaderAccess
-
-
Method Details
-
load
public <E> com.mojang.serialization.DataResult<? extends Registry<E>> load(RegistryKey<? extends Registry<E>> registryRef, com.mojang.serialization.Codec<E> codec, com.mojang.serialization.DynamicOps<JsonElement> ops) - Mappings:
Namespace Name Mixin selector official a
Laax$a;a(Laba;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult;
intermediary method_40409
Lnet/minecraft/class_6900$class_6901;method_40409(Lnet/minecraft/class_5321;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult;
named load
Lnet/minecraft/util/dynamic/RegistryLoader$LoaderAccess;load(Lnet/minecraft/util/registry/RegistryKey;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult;
-
load
public <E> com.mojang.serialization.DataResult<RegistryEntry<E>> load(RegistryKey<? extends Registry<E>> registryRef, com.mojang.serialization.Codec<E> codec, RegistryKey<E> entryKey, com.mojang.serialization.DynamicOps<JsonElement> ops) - Mappings:
Namespace Name Mixin selector official a
Laax$a;a(Laba;Lcom/mojang/serialization/Codec;Laba;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult;
intermediary method_40410
Lnet/minecraft/class_6900$class_6901;method_40410(Lnet/minecraft/class_5321;Lcom/mojang/serialization/Codec;Lnet/minecraft/class_5321;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult;
named load
Lnet/minecraft/util/dynamic/RegistryLoader$LoaderAccess;load(Lnet/minecraft/util/registry/RegistryKey;Lcom/mojang/serialization/Codec;Lnet/minecraft/util/registry/RegistryKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult;
-
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)
. -
dynamicRegistryManager
Returns the value of thedynamicRegistryManager
record component.- Returns:
- the value of the
dynamicRegistryManager
record component
-
loader
Returns the value of theloader
record component.- Returns:
- the value of the
loader
record component
-