Package net.minecraft.registry
Record Class RegistryBuilder.FullPatchesRegistriesPair
java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryBuilder.FullPatchesRegistriesPair
- Record Components:
- full-
- patches-
- Enclosing class:
- RegistryBuilder
public static record RegistryBuilder.FullPatchesRegistriesPair(RegistryWrapper.WrapperLookup full, RegistryWrapper.WrapperLookup patches)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/registry/RegistryBuilder$FullPatchesRegistriesPair- intermediary - net/minecraft/class_7877$class_8993- official - kh$g- named - full- intermediary - comp_2113- official - a- named - patches- intermediary - comp_2114- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RegistryWrapper.WrapperLookupThe field for thefullrecord component.private final RegistryWrapper.WrapperLookupThe field for thepatchesrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionFullPatchesRegistriesPair(RegistryWrapper.WrapperLookup wrapperLookup, RegistryWrapper.WrapperLookup wrapperLookup2) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.full()Returns the value of thefullrecord component.final inthashCode()Returns a hash code value for this object.patches()Returns the value of thepatchesrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
FullPatchesRegistriesPairpublic FullPatchesRegistriesPair(RegistryWrapper.WrapperLookup wrapperLookup, RegistryWrapper.WrapperLookup wrapperLookup2) 
 
- 
- 
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).
- 
fullReturns the value of thefullrecord component.- Returns:
- the value of the fullrecord component
 
- 
patchesReturns the value of thepatchesrecord component.- Returns:
- the value of the patchesrecord component
 
 
-