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 - eza$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 SummaryFieldsModifier and TypeFieldDescriptionprivate final DataConfigurationThe field for thedataConfigurationrecord component.private final WorldGenSettingsThe field for theworldGenSettingsrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionWorldCreationSettings(WorldGenSettings worldGenSettings, DataConfiguration dataConfiguration) Creates an instance of aWorldCreationSettingsrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedataConfigurationrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Returns the value of theworldGenSettingsrecord component.
- 
Field Details- 
worldGenSettingsThe field for theworldGenSettingsrecord component.
- 
dataConfigurationThe field for thedataConfigurationrecord component.
 
- 
- 
Constructor Details- 
WorldCreationSettingsWorldCreationSettings(WorldGenSettings worldGenSettings, DataConfiguration dataConfiguration) Creates an instance of aWorldCreationSettingsrecord class.- Parameters:
- worldGenSettings- the value for the- worldGenSettingsrecord component
- dataConfiguration- the value for the- dataConfigurationrecord component
 
 
- 
- 
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).
- 
worldGenSettingsReturns the value of theworldGenSettingsrecord component.- Returns:
- the value of the worldGenSettingsrecord component
 
- 
dataConfigurationReturns the value of thedataConfigurationrecord component.- Returns:
- the value of the dataConfigurationrecord component
 
 
-