Package net.minecraft.core
Record Class RegistrySetBuilder.RegistryStub<T>
java.lang.Object
java.lang.Record
net.minecraft.core.RegistrySetBuilder.RegistryStub<T>
- Enclosing class:
- RegistrySetBuilder
static record RegistrySetBuilder.RegistryStub<T>(ResourceKey<? extends Registry<T>> key, com.mojang.serialization.Lifecycle lifecycle, RegistrySetBuilder.RegistryBootstrap<T> bootstrap)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RegistrySetBuilder.RegistryBootstrap<T>The field for thebootstraprecord component.private final ResourceKey<? extends Registry<T>>The field for thekeyrecord component.private final com.mojang.serialization.LifecycleThe field for thelifecyclerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionRegistryStub(ResourceKey<? extends Registry<T>> key, com.mojang.serialization.Lifecycle lifecycle, RegistrySetBuilder.RegistryBootstrap<T> bootstrap) Creates an instance of aRegistryStubrecord class.
- 
Method SummaryModifier and TypeMethodDescription(package private) voidapply(RegistrySetBuilder.BuildState p_256272_) Returns 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.ResourceKey<? extends Registry<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.
- 
Field Details- 
keyThe field for thekeyrecord component.
- 
lifecycleprivate final com.mojang.serialization.Lifecycle lifecycleThe field for thelifecyclerecord component.
- 
bootstrapThe field for thebootstraprecord component.
 
- 
- 
Constructor Details- 
RegistryStubRegistryStub(ResourceKey<? extends Registry<T>> key, com.mojang.serialization.Lifecycle lifecycle, RegistrySetBuilder.RegistryBootstrap<T> bootstrap) Creates an instance of aRegistryStubrecord class.- Parameters:
- key- the value for the- keyrecord component
- lifecycle- the value for the- lifecyclerecord component
- bootstrap- the value for the- bootstraprecord component
 
 
- 
- 
Method Details- 
apply
- 
collectRegisteredValuespublic RegistrySetBuilder.RegistryContents<T> collectRegisteredValues(RegistrySetBuilder.BuildState p_256416_) 
- 
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
 
 
-