Package net.minecraft.registry
Record Class RegistryBuilder.InitializedRegistry<T>
java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryBuilder.InitializedRegistry<T>
- Record Components:
- key-
- lifecycle-
- values-
- Enclosing class:
- RegistryBuilder
private static record RegistryBuilder.InitializedRegistry<T>(RegistryKey<? extends Registry<? extends T>> key, com.mojang.serialization.Lifecycle lifecycle, Map<RegistryKey<T>,RegistryBuilder.EntryAssociatedValue<T>> values)
extends Record 
- Mappings:
- Namespace - Name - named - net/minecraft/registry/RegistryBuilder$InitializedRegistry- intermediary - net/minecraft/class_7877$class_7883- official - kh$j- named - key- intermediary - comp_1305- official - a- named - lifecycle- intermediary - comp_1306- official - b- named - values- intermediary - comp_1143- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RegistryKey<? extends Registry<? extends T>> The field for thekeyrecord component.private final com.mojang.serialization.LifecycleThe field for thelifecyclerecord component.private final Map<RegistryKey<T>, RegistryBuilder.EntryAssociatedValue<T>> The field for thevaluesrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionInitializedRegistry(RegistryKey<? extends Registry<? extends T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, Map<RegistryKey<T>, RegistryBuilder.EntryAssociatedValue<T>> map) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.RegistryKey<? extends Registry<? extends T>> key()Returns the value of thekeyrecord component.com.mojang.serialization.LifecycleReturns the value of thelifecyclerecord component.final StringtoString()Returns a string representation of this record class.toWrapper(RegistryBuilder.AnyOwner anyOwner) values()Returns the value of thevaluesrecord component.
- 
Field Details
- 
Constructor Details- 
InitializedRegistryInitializedRegistry(RegistryKey<? extends Registry<? extends T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, Map<RegistryKey<T>, RegistryBuilder.EntryAssociatedValue<T>> map) 
 
- 
- 
Method Details- 
toWrapper- Mappings:
- Namespace - Name - Mixin selector - named - toWrapper- Lnet/minecraft/registry/RegistryBuilder$InitializedRegistry;toWrapper(Lnet/minecraft/registry/RegistryBuilder$AnyOwner;)Lnet/minecraft/registry/RegistryWrapper$Impl;- intermediary - method_46802- Lnet/minecraft/class_7877$class_7883;method_46802(Lnet/minecraft/class_7877$class_7879;)Lnet/minecraft/class_7225$class_7226;- official - a- Lkh$j;a(Lkh$m;)Ljt$b;
 
- 
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
 
- 
valuesReturns the value of thevaluesrecord component.- Returns:
- the value of the valuesrecord component
 
 
-