Package net.minecraft.server
Record Class SaveLoading.LoadContext<D>
java.lang.Object
java.lang.Record
net.minecraft.server.SaveLoading.LoadContext<D>
- Record Components:
- extraData-
- dimensionsRegistryManager-
- Enclosing class:
- SaveLoading
public static record SaveLoading.LoadContext<D>(D extraData, DynamicRegistryManager.Immutable dimensionsRegistryManager)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/server/SaveLoading$LoadContext- intermediary - net/minecraft/class_7237$class_7661- official - alt$b- named - extraData- intermediary - comp_991- official - a- named - dimensionsRegistryManager- intermediary - comp_992- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final DynamicRegistryManager.ImmutableThe field for thedimensionsRegistryManagerrecord component.private final DThe field for theextraDatarecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedimensionsRegistryManagerrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theextraDatarecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
extraDataThe field for theextraDatarecord component.
- 
dimensionsRegistryManagerThe field for thedimensionsRegistryManagerrecord component.
 
- 
- 
Constructor Details- 
LoadContext
 
- 
- 
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).
- 
extraDataReturns the value of theextraDatarecord component.- Returns:
- the value of the extraDatarecord component
 
- 
dimensionsRegistryManagerReturns the value of thedimensionsRegistryManagerrecord component.- Returns:
- the value of the dimensionsRegistryManagerrecord component
 
 
-