Record Class CreateWorldScreen.WorldCreationSettings
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.world.CreateWorldScreen.WorldCreationSettings
- Record Components:
worldGenSettings
-dataConfiguration
-
- Enclosing class:
CreateWorldScreen
@Environment(CLIENT)
private static record CreateWorldScreen.WorldCreationSettings(WorldGenSettings worldGenSettings, DataConfiguration dataConfiguration)
extends Record
- Mappings:
Namespace Name official exn$a
intermediary net/minecraft/class_525$class_7749
named net/minecraft/client/gui/screen/world/CreateWorldScreen$WorldCreationSettings
official a
intermediary comp_1025
named worldGenSettings
official b
intermediary comp_1026
named dataConfiguration
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DataConfiguration
The field for thedataConfiguration
record component.private final WorldGenSettings
The field for theworldGenSettings
record component. -
Constructor Summary
ConstructorDescriptionWorldCreationSettings
(WorldGenSettings worldGenSettings, DataConfiguration dataConfiguration) Creates an instance of aWorldCreationSettings
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedataConfiguration
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.final String
toString()
Returns a string representation of this record class.Returns the value of theworldGenSettings
record component.
-
Field Details
-
worldGenSettings
The field for theworldGenSettings
record component. -
dataConfiguration
The field for thedataConfiguration
record component.
-
-
Constructor Details
-
WorldCreationSettings
WorldCreationSettings(WorldGenSettings worldGenSettings, DataConfiguration dataConfiguration) Creates an instance of aWorldCreationSettings
record class.- Parameters:
worldGenSettings
- the value for theworldGenSettings
record componentdataConfiguration
- the value for thedataConfiguration
record component
-
-
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)
. -
worldGenSettings
Returns the value of theworldGenSettings
record component.- Returns:
- the value of the
worldGenSettings
record component
-
dataConfiguration
Returns the value of thedataConfiguration
record component.- Returns:
- the value of the
dataConfiguration
record component
-