Package net.minecraft.registry
Record Class RegistryBuilder.EntryAssociatedValue<T>
java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryBuilder.EntryAssociatedValue<T>
- Record Components:
- value-
- entry-
- Enclosing class:
- RegistryBuilder
private static record RegistryBuilder.EntryAssociatedValue<T>(RegistryBuilder.RegisteredValue<T> value, Optional<RegistryEntry.Reference<T>> entry)
extends Record
- Mappings:
- Namespace - Name - official - hu$i- intermediary - net/minecraft/class_7877$class_7886- named - net/minecraft/registry/RegistryBuilder$EntryAssociatedValue- official - a- intermediary - comp_1147- named - value- official - b- intermediary - comp_1148- named - entry
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final Optional<RegistryEntry.Reference<T>>The field for theentryrecord component.private final RegistryBuilder.RegisteredValue<T>The field for thevaluerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionEntryAssociatedValue(RegistryBuilder.RegisteredValue<T> registeredValue, Optional<RegistryEntry.Reference<T>> optional) 
- 
Method SummaryModifier and TypeMethodDescriptionentry()Returns the value of theentryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
- 
Field Details
- 
Constructor Details- 
EntryAssociatedValueEntryAssociatedValue(RegistryBuilder.RegisteredValue<T> registeredValue, Optional<RegistryEntry.Reference<T>> optional) 
 
- 
- 
Method Details- 
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).
- 
valueReturns the value of thevaluerecord component.- Returns:
- the value of the valuerecord component
 
- 
entryReturns the value of theentryrecord component.- Returns:
- the value of the entryrecord component
 
 
-