Record Class CreateWorldScreen.DataPackReloadCookie
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.DataPackReloadCookie
- Enclosing class:
- CreateWorldScreen
static record CreateWorldScreen.DataPackReloadCookie(WorldGenSettings worldGenSettings, WorldDataConfiguration dataConfiguration)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final WorldDataConfigurationThe field for thedataConfigurationrecord component.private final WorldGenSettingsThe field for theworldGenSettingsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionDataPackReloadCookie(WorldGenSettings worldGenSettings, WorldDataConfiguration dataConfiguration) Creates an instance of aDataPackReloadCookierecord class. -
Method Summary
Modifier 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
-
worldGenSettings
The field for theworldGenSettingsrecord component. -
dataConfiguration
The field for thedataConfigurationrecord component.
-
-
Constructor Details
-
DataPackReloadCookie
DataPackReloadCookie(WorldGenSettings worldGenSettings, WorldDataConfiguration dataConfiguration) Creates an instance of aDataPackReloadCookierecord class.- Parameters:
worldGenSettings- the value for theworldGenSettingsrecord componentdataConfiguration- the value for thedataConfigurationrecord 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 theworldGenSettingsrecord component.- Returns:
- the value of the
worldGenSettingsrecord component
-
dataConfiguration
Returns the value of thedataConfigurationrecord component.- Returns:
- the value of the
dataConfigurationrecord component
-