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 ht$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 Summary
Modifier and TypeFieldDescriptionprivate final Optional<RegistryEntry.Reference<T>>
The field for theentry
record component.private final RegistryBuilder.RegisteredValue<T>
The field for thevalue
record component. -
Constructor Summary
ConstructorDescriptionEntryAssociatedValue
(RegistryBuilder.RegisteredValue<T> registeredValue, Optional<RegistryEntry.Reference<T>> optional) -
Method Summary
Modifier and TypeMethodDescriptionentry()
Returns the value of theentry
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.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Field Details
-
Constructor Details
-
EntryAssociatedValue
EntryAssociatedValue(RegistryBuilder.RegisteredValue<T> registeredValue, Optional<RegistryEntry.Reference<T>> optional)
-
-
Method Details
-
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)
. -
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
entry
Returns the value of theentry
record component.- Returns:
- the value of the
entry
record component
-