Package com.mojang.realmsclient.util
Record Class WorldGenerationInfo
java.lang.Object
java.lang.Record
com.mojang.realmsclient.util.WorldGenerationInfo
-
Field Summary
-
Constructor Summary
ConstructorDescriptionWorldGenerationInfo
(String seed, LevelType levelType, boolean generateStructures, Set<String> experiments) Creates an instance of aWorldGenerationInfo
record class. -
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
-
WorldGenerationInfo
public WorldGenerationInfo(String seed, LevelType levelType, boolean generateStructures, Set<String> experiments) Creates an instance of aWorldGenerationInfo
record class.- Parameters:
seed
- the value for theseed
record componentlevelType
- the value for thelevelType
record componentgenerateStructures
- the value for thegenerateStructures
record componentexperiments
- the value for theexperiments
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
-
experiments
Returns the value of theexperiments
record component.- Returns:
- the value of the
experiments
record component
-