Record Class ResetWorldInfo
java.lang.Object
java.lang.Record
net.minecraft.client.realms.gui.screen.ResetWorldInfo
- Record Components:
seed
-levelType
-generateStructures
-
@Environment(CLIENT)
public record ResetWorldInfo(String seed, RealmsWorldGeneratorType levelType, boolean generateStructures)
extends Record
- Mappings:
Namespace Name official epj
intermediary net/minecraft/class_4413
named net/minecraft/client/realms/gui/screen/ResetWorldInfo
official a
intermediary comp_1976
named seed
official b
intermediary comp_1977
named levelType
official c
intermediary comp_1978
named generateStructures
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
The field for thegenerateStructures
record component.private final RealmsWorldGeneratorType
The field for thelevelType
record component.private final String
The field for theseed
record component. -
Constructor Summary
ConstructorsConstructorDescriptionResetWorldInfo
(String seed, RealmsWorldGeneratorType levelType, boolean generateStructures) Creates an instance of aResetWorldInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.boolean
Returns the value of thegenerateStructures
record component.final int
hashCode()
Returns a hash code value for this object.Returns the value of thelevelType
record component.seed()
Returns the value of theseed
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
seed
The field for theseed
record component. -
levelType
The field for thelevelType
record component. -
generateStructures
private final boolean generateStructuresThe field for thegenerateStructures
record component.
-
-
Constructor Details
-
ResetWorldInfo
Creates an instance of aResetWorldInfo
record class.- Parameters:
seed
- the value for theseed
record componentlevelType
- the value for thelevelType
record componentgenerateStructures
- the value for thegenerateStructures
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
seed
Returns the value of theseed
record component.- Returns:
- the value of the
seed
record component
-
levelType
Returns the value of thelevelType
record component.- Returns:
- the value of the
levelType
record component
-
generateStructures
public boolean generateStructures()Returns the value of thegenerateStructures
record component.- Returns:
- the value of the
generateStructures
record component
-