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 official adj$b
intermediary net/minecraft/class_7237$class_7661
named net/minecraft/server/SaveLoading$LoadContext
official a
intermediary comp_991
named extraData
official b
intermediary comp_992
named dimensionsRegistryManager
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DynamicRegistryManager.Immutable
The field for thedimensionsRegistryManager
record component.private final D
The field for theextraData
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedimensionsRegistryManager
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of theextraData
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
extraData
The field for theextraData
record component. -
dimensionsRegistryManager
The field for thedimensionsRegistryManager
record component.
-
-
Constructor Details
-
LoadContext
-
-
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)
. -
extraData
Returns the value of theextraData
record component.- Returns:
- the value of the
extraData
record component
-
dimensionsRegistryManager
Returns the value of thedimensionsRegistryManager
record component.- Returns:
- the value of the
dimensionsRegistryManager
record component
-