Package net.minecraft
Record Class class_7877.class_7886<T>
java.lang.Object
java.lang.Record
net.minecraft.class_7877.class_7886<T>
- Record Components:
value-holder-
- Enclosing class:
class_7877
private static record class_7877.class_7886<T>(class_7877.class_7881<T> value, Optional<RegistryEntry.Reference<T>> holder)
extends Record
- Mappings:
Namespace Name official hn$iintermediary net/minecraft/class_7877$class_7886named net/minecraft/class_7877$class_7886official aintermediary comp_1147named valueofficial bintermediary comp_1148named holder
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<RegistryEntry.Reference<T>>The field for theholderrecord component.private final class_7877.class_7881<T>The field for thevaluerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_7886(class_7877.class_7881<T> class_7881, Optional<RegistryEntry.Reference<T>> optional) -
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.holder()Returns the value of theholderrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Field Details
-
Constructor Details
-
class_7886
class_7886(class_7877.class_7881<T> class_7881, 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 thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
holder
Returns the value of theholderrecord component.- Returns:
- the value of the
holderrecord component
-