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 - named - net/minecraft/registry/RegistryBuilder$RegistryInfo- intermediary - net/minecraft/class_7877$class_7884- official - kh$k- named - key- intermediary - comp_1144- official - a- named - lifecycle- intermediary - comp_1145- official - b- named - bootstrap- intermediary - comp_1146- official - c
- 
Field SummaryFieldsModifier 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 SummaryConstructorsConstructorDescriptionRegistryInfo(RegistryKey<? extends Registry<T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, RegistryBuilder.BootstrapFunction<T> bootstrapFunction) 
- 
Method SummaryModifier 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- 
RegistryInfoRegistryInfo(RegistryKey<? extends Registry<T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, RegistryBuilder.BootstrapFunction<T> bootstrapFunction) 
 
- 
- 
Method Details- 
runBootstrap- Mappings:
- Namespace - Name - Mixin selector - named - runBootstrap- Lnet/minecraft/registry/RegistryBuilder$RegistryInfo;runBootstrap(Lnet/minecraft/registry/RegistryBuilder$Registries;)V- intermediary - method_46806- Lnet/minecraft/class_7877$class_7884;method_46806(Lnet/minecraft/class_7877$class_7878;)V- official - b- Lkh$k;b(Lkh$b;)V
 
- 
init- Mappings:
- Namespace - Name - Mixin selector - named - init- Lnet/minecraft/registry/RegistryBuilder$RegistryInfo;init(Lnet/minecraft/registry/RegistryBuilder$Registries;)Lnet/minecraft/registry/RegistryBuilder$InitializedRegistry;- intermediary - method_46805- Lnet/minecraft/class_7877$class_7884;method_46805(Lnet/minecraft/class_7877$class_7878;)Lnet/minecraft/class_7877$class_7883;- official - a- Lkh$k;a(Lkh$b;)Lkh$j;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
keyReturns the value of thekeyrecord component.- Returns:
- the value of the keyrecord component
 
- 
lifecyclepublic com.mojang.serialization.Lifecycle lifecycle()Returns the value of thelifecyclerecord component.- Returns:
- the value of the lifecyclerecord component
 
- 
bootstrapReturns the value of thebootstraprecord component.- Returns:
- the value of the bootstraprecord component
 
 
-