Package net.minecraft.registry
Record Class RegistryBuilder.RegistryInfo<T>
java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryBuilder.RegistryInfo<T>
- Record Components:
key-lifecycle-bootstrap-
- Enclosing class:
RegistryBuilder
private static record RegistryBuilder.RegistryInfo<T>(RegistryKey<? extends Registry<T>> key, com.mojang.serialization.Lifecycle lifecycle, RegistryBuilder.BootstrapFunction<T> bootstrap)
extends Record
- Mappings:
Namespace Name intermediary net/minecraft/class_7877$class_7884official hu$gnamed net/minecraft/registry/RegistryBuilder$RegistryInfointermediary comp_1144official anamed keyintermediary comp_1145official bnamed lifecycleintermediary comp_1146official cnamed bootstrap
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final RegistryBuilder.BootstrapFunction<T>The field for thebootstraprecord component.private final RegistryKey<? extends Registry<T>>The field for thekeyrecord component.private final com.mojang.serialization.LifecycleThe field for thelifecyclerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionRegistryInfo(RegistryKey<? extends Registry<T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, RegistryBuilder.BootstrapFunction<T> bootstrapFunction) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebootstraprecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.init(RegistryBuilder.Registries registries) RegistryKey<? extends Registry<T>>key()Returns the value of thekeyrecord component.com.mojang.serialization.LifecycleReturns the value of thelifecyclerecord component.(package private) voidrunBootstrap(RegistryBuilder.Registries registries) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
RegistryInfo
RegistryInfo(RegistryKey<? extends Registry<T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, RegistryBuilder.BootstrapFunction<T> bootstrapFunction)
-
-
Method Details
-
runBootstrap
- Mappings:
Namespace Name Mixin selector intermediary method_46806Lnet/minecraft/class_7877$class_7884;method_46806(Lnet/minecraft/class_7877$class_7878;)Vofficial bLhu$g;b(Lhu$a;)Vnamed runBootstrapLnet/minecraft/registry/RegistryBuilder$RegistryInfo;runBootstrap(Lnet/minecraft/registry/RegistryBuilder$Registries;)V
-
init
- Mappings:
Namespace Name Mixin selector intermediary method_46805Lnet/minecraft/class_7877$class_7884;method_46805(Lnet/minecraft/class_7877$class_7878;)Lnet/minecraft/class_7877$class_7883;official aLhu$g;a(Lhu$a;)Lhu$f;named initLnet/minecraft/registry/RegistryBuilder$RegistryInfo;init(Lnet/minecraft/registry/RegistryBuilder$Registries;)Lnet/minecraft/registry/RegistryBuilder$InitializedRegistry;
-
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 thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
lifecycle
public com.mojang.serialization.Lifecycle lifecycle()Returns the value of thelifecyclerecord component.- Returns:
- the value of the
lifecyclerecord component
-
bootstrap
Returns the value of thebootstraprecord component.- Returns:
- the value of the
bootstraprecord component
-