Record Class ResetWorldInfo
java.lang.Object
java.lang.Record
net.minecraft.client.realms.gui.screen.ResetWorldInfo
- Record Components:
seed
-levelType
-generateStructures
-experiments
-
@Environment(CLIENT)
public record ResetWorldInfo(String seed, RealmsWorldGeneratorType levelType, boolean generateStructures, Set<String> experiments)
extends Record
- Mappings:
Namespace Name official eub
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
official d
intermediary comp_1991
named experiments
-
Field Summary
Modifier and TypeFieldDescriptionThe field for theexperiments
record component.private 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
ConstructorDescriptionResetWorldInfo
(String seed, RealmsWorldGeneratorType levelType, boolean generateStructures, Set<String> set) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.Returns the value of theexperiments
record component.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. -
experiments
The field for theexperiments
record component.
-
-
Constructor Details
-
ResetWorldInfo
public ResetWorldInfo(String seed, RealmsWorldGeneratorType levelType, boolean generateStructures, Set<String> set) - Mappings:
Namespace Name Mixin selector official <init>
Leub;<init>(Ljava/lang/String;Letv;ZLjava/util/Set;)V
intermediary <init>
Lnet/minecraft/class_4413;<init>(Ljava/lang/String;Lnet/minecraft/class_5672;ZLjava/util/Set;)V
named <init>
Lnet/minecraft/client/realms/gui/screen/ResetWorldInfo;<init>(Ljava/lang/String;Lnet/minecraft/client/realms/gui/screen/RealmsWorldGeneratorType;ZLjava/util/Set;)V
-
-
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
-
experiments
Returns the value of theexperiments
record component.- Returns:
- the value of the
experiments
record component
-