Package net.minecraft.registry
Record Class RegistryLoader.Loader<T>
java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryLoader.Loader<T>
- Record Components:
data
-registry
-loadingErrors
-
- Enclosing class:
RegistryLoader
private static record RegistryLoader.Loader<T>(RegistryLoader.Entry<T> data, MutableRegistry<T> registry, Map<RegistryKey<?>,Exception> loadingErrors)
extends Record
- Mappings:
Namespace Name named net/minecraft/registry/RegistryLoader$Loader
intermediary net/minecraft/class_7655$class_9158
official ala$a
named data
intermediary comp_2245
official a
named registry
intermediary comp_2246
official b
named loadingErrors
intermediary comp_2247
official c
-
Field Summary
Modifier and TypeFieldDescriptionprivate final RegistryLoader.Entry
<T> The field for thedata
record component.private final Map
<RegistryKey<?>, Exception> The field for theloadingErrors
record component.private final MutableRegistry
<T> The field for theregistry
record component. -
Constructor Summary
ConstructorDescriptionLoader
(RegistryLoader.Entry<T> entry, MutableRegistry<T> mutableRegistry, Map<RegistryKey<?>, Exception> map) -
Method Summary
Modifier and TypeMethodDescriptiondata()
Returns the value of thedata
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.void
loadFromNetwork
(Map<RegistryKey<? extends Registry<?>>, List<SerializableRegistries.SerializedRegistryEntry>> data, ResourceFactory factory, RegistryOps.RegistryInfoGetter infoGetter) void
loadFromResource
(ResourceManager resourceManager, RegistryOps.RegistryInfoGetter infoGetter) Map
<RegistryKey<?>, Exception> Returns the value of theloadingErrors
record component.registry()
Returns the value of theregistry
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
data
The field for thedata
record component. -
registry
The field for theregistry
record component. -
loadingErrors
The field for theloadingErrors
record component.
-
-
Constructor Details
-
Loader
Loader(RegistryLoader.Entry<T> entry, MutableRegistry<T> mutableRegistry, Map<RegistryKey<?>, Exception> map)
-
-
Method Details
-
loadFromResource
public void loadFromResource(ResourceManager resourceManager, RegistryOps.RegistryInfoGetter infoGetter) - Mappings:
Namespace Name Mixin selector named loadFromResource
Lnet/minecraft/registry/RegistryLoader$Loader;loadFromResource(Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/registry/RegistryOps$RegistryInfoGetter;)V
intermediary method_56520
Lnet/minecraft/class_7655$class_9158;method_56520(Lnet/minecraft/class_3300;Lnet/minecraft/class_6903$class_7863;)V
official a
Lala$a;a(Laup;Lald$c;)V
-
loadFromNetwork
public void loadFromNetwork(Map<RegistryKey<? extends Registry<?>>, List<SerializableRegistries.SerializedRegistryEntry>> data, ResourceFactory factory, RegistryOps.RegistryInfoGetter infoGetter) - Mappings:
Namespace Name Mixin selector named loadFromNetwork
Lnet/minecraft/registry/RegistryLoader$Loader;loadFromNetwork(Ljava/util/Map;Lnet/minecraft/resource/ResourceFactory;Lnet/minecraft/registry/RegistryOps$RegistryInfoGetter;)V
intermediary method_56521
Lnet/minecraft/class_7655$class_9158;method_56521(Ljava/util/Map;Lnet/minecraft/class_5912;Lnet/minecraft/class_6903$class_7863;)V
official a
Lala$a;a(Ljava/util/Map;Laus;Lald$c;)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. All components in this record class are compared withObjects::equals(Object,Object)
. -
data
Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-
registry
Returns the value of theregistry
record component.- Returns:
- the value of the
registry
record component
-
loadingErrors
Returns the value of theloadingErrors
record component.- Returns:
- the value of the
loadingErrors
record component
-