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
Modifier and TypeFieldDescriptionprivate final WorldDataConfiguration
The field for thedataConfiguration
record component.private final WorldGenSettings
The field for theworldGenSettings
record component. -
Constructor Summary
ConstructorDescriptionDataPackReloadCookie
(WorldGenSettings worldGenSettings, WorldDataConfiguration dataConfiguration) Creates an instance of aDataPackReloadCookie
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
-
DataPackReloadCookie
DataPackReloadCookie(WorldGenSettings worldGenSettings, WorldDataConfiguration dataConfiguration) Creates an instance of aDataPackReloadCookie
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
-