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 jy$k
named key
intermediary comp_1144
official a
named lifecycle
intermediary comp_1145
official b
named bootstrap
intermediary comp_1146
official c
-
Field Summary
Modifier and TypeFieldDescriptionprivate final RegistryBuilder.BootstrapFunction
<T> The field for thebootstrap
record component.private final RegistryKey
<? extends Registry<T>> The field for thekey
record component.private final com.mojang.serialization.Lifecycle
The field for thelifecycle
record component. -
Constructor Summary
ConstructorDescriptionRegistryInfo
(RegistryKey<? extends Registry<T>> registryKey, com.mojang.serialization.Lifecycle lifecycle, RegistryBuilder.BootstrapFunction<T> bootstrapFunction) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebootstrap
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.init
(RegistryBuilder.Registries registries) RegistryKey
<? extends Registry<T>> key()
Returns the value of thekey
record component.com.mojang.serialization.Lifecycle
Returns the value of thelifecycle
record component.(package private) void
runBootstrap
(RegistryBuilder.Registries registries) final String
toString()
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 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
Ljy$k;b(Ljy$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
Ljy$k;a(Ljy$b;)Ljy$j;
-
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 thekey
record component.- Returns:
- the value of the
key
record component
-
lifecycle
public com.mojang.serialization.Lifecycle lifecycle()Returns the value of thelifecycle
record component.- Returns:
- the value of the
lifecycle
record component
-
bootstrap
Returns the value of thebootstrap
record component.- Returns:
- the value of the
bootstrap
record component
-