Package net.minecraft.core
Record Class RegistrySetBuilder.RegistryContents<T>
java.lang.Object
java.lang.Record
net.minecraft.core.RegistrySetBuilder.RegistryContents<T>
- Enclosing class:
RegistrySetBuilder
static record RegistrySetBuilder.RegistryContents<T>(ResourceKey<? extends Registry<? extends T>> key, com.mojang.serialization.Lifecycle lifecycle, Map<ResourceKey<T>,RegistrySetBuilder.ValueAndHolder<T>> values)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ResourceKey<? extends Registry<? extends T>>
The field for thekey
record component.private final com.mojang.serialization.Lifecycle
The field for thelifecycle
record component.private final Map<ResourceKey<T>,
RegistrySetBuilder.ValueAndHolder<T>> The field for thevalues
record component. -
Constructor Summary
ConstructorDescriptionRegistryContents
(ResourceKey<? extends Registry<? extends T>> key, com.mojang.serialization.Lifecycle lifecycle, Map<ResourceKey<T>, RegistrySetBuilder.ValueAndHolder<T>> values) Creates an instance of aRegistryContents
record class. -
Method Summary
Modifier and TypeMethodDescriptionbuildAsLookup
(RegistrySetBuilder.CompositeOwner p_312295_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.ResourceKey<? extends Registry<? extends T>>
key()
Returns the value of thekey
record component.com.mojang.serialization.Lifecycle
Returns the value of thelifecycle
record component.final String
toString()
Returns a string representation of this record class.values()
Returns the value of thevalues
record component.
-
Field Details
-
key
The field for thekey
record component. -
lifecycle
private final com.mojang.serialization.Lifecycle lifecycleThe field for thelifecycle
record component. -
values
The field for thevalues
record component.
-
-
Constructor Details
-
RegistryContents
RegistryContents(ResourceKey<? extends Registry<? extends T>> key, com.mojang.serialization.Lifecycle lifecycle, Map<ResourceKey<T>, RegistrySetBuilder.ValueAndHolder<T>> values) Creates an instance of aRegistryContents
record class.- Parameters:
key
- the value for thekey
record componentlifecycle
- the value for thelifecycle
record componentvalues
- the value for thevalues
record component
-
-
Method Details
-
buildAsLookup
-
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
-
values
Returns the value of thevalues
record component.- Returns:
- the value of the
values
record component
-