Record Class ParsedSaveProperties
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.ParsedSaveProperties
- Record Components:
properties
-dimensions
-
public record ParsedSaveProperties(SaveProperties properties, DimensionOptionsRegistryHolder.DimensionsConfig dimensions)
extends Record
- Mappings:
Namespace Name official egj
intermediary net/minecraft/class_8895
named net/minecraft/world/level/storage/ParsedSaveProperties
official a
intermediary comp_2008
named properties
official b
intermediary comp_2009
named dimensions
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DimensionOptionsRegistryHolder.DimensionsConfig
The field for thedimensions
record component.private final SaveProperties
The field for theproperties
record component. -
Constructor Summary
ConstructorDescriptionParsedSaveProperties
(SaveProperties saveProperties, DimensionOptionsRegistryHolder.DimensionsConfig dimensionsConfig) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedimensions
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.Returns the value of theproperties
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
properties
The field for theproperties
record component. -
dimensions
The field for thedimensions
record component.
-
-
Constructor Details
-
ParsedSaveProperties
public ParsedSaveProperties(SaveProperties saveProperties, DimensionOptionsRegistryHolder.DimensionsConfig dimensionsConfig)
-
-
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)
. -
properties
Returns the value of theproperties
record component.- Returns:
- the value of the
properties
record component
-
dimensions
Returns the value of thedimensions
record component.- Returns:
- the value of the
dimensions
record component
-