Record Class RegistrySetBuilder.RegistryContents<T>
java.lang.Object
java.lang.Record
net.minecraft.core.RegistrySetBuilder.RegistryContents<T>
- Enclosing class:
RegistrySetBuilder
private 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
FieldsModifier and TypeFieldDescriptionprivate final ResourceKey<? extends Registry<? extends T>> The field for thekeyrecord component.private final com.mojang.serialization.LifecycleThe field for thelifecyclerecord component.private final Map<ResourceKey<T>, RegistrySetBuilder.ValueAndHolder<T>> The field for thevaluesrecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateRegistryContents(ResourceKey<? extends Registry<? extends T>> key, com.mojang.serialization.Lifecycle lifecycle, Map<ResourceKey<T>, RegistrySetBuilder.ValueAndHolder<T>> values) Creates an instance of aRegistryContentsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.ResourceKey<? 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.values()Returns the value of thevaluesrecord component.
-
Field Details
-
key
The field for thekeyrecord component. -
lifecycle
private final com.mojang.serialization.Lifecycle lifecycleThe field for thelifecyclerecord component. -
values
The field for thevaluesrecord component.
-
-
Constructor Details
-
RegistryContents
private RegistryContents(ResourceKey<? extends Registry<? extends T>> key, com.mojang.serialization.Lifecycle lifecycle, Map<ResourceKey<T>, RegistrySetBuilder.ValueAndHolder<T>> values) Creates an instance of aRegistryContentsrecord class.- Parameters:
key- the value for thekeyrecord componentlifecycle- the value for thelifecyclerecord componentvalues- the value for thevaluesrecord component
-
-
Method Details
-
buildAsLookup
-
toString
-
hashCode
-
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 thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
lifecycle
public com.mojang.serialization.Lifecycle lifecycle()Returns the value of thelifecyclerecord component.- Returns:
- the value of the
lifecyclerecord component
-
values
Returns the value of thevaluesrecord component.- Returns:
- the value of the
valuesrecord component
-