Package com.mojang.realmsclient.util
Record Class WorldGenerationInfo
java.lang.Object
java.lang.Record
com.mojang.realmsclient.util.WorldGenerationInfo
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionWorldGenerationInfo(String seed, LevelType levelType, boolean generateStructures, Set<String> experiments) Creates an instance of aWorldGenerationInforecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexperimentsrecord component.booleanReturns the value of thegenerateStructuresrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thelevelTyperecord component.seed()Returns the value of theseedrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
seedThe field for theseedrecord component.
- 
levelTypeThe field for thelevelTyperecord component.
- 
generateStructuresprivate final boolean generateStructuresThe field for thegenerateStructuresrecord component.
- 
experimentsThe field for theexperimentsrecord component.
 
- 
- 
Constructor Details- 
WorldGenerationInfopublic WorldGenerationInfo(String seed, LevelType levelType, boolean generateStructures, Set<String> experiments) Creates an instance of aWorldGenerationInforecord class.- Parameters:
- seed- the value for the- seedrecord component
- levelType- the value for the- levelTyperecord component
- generateStructures- the value for the- generateStructuresrecord component
- experiments- the value for the- experimentsrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
seedReturns the value of theseedrecord component.- Returns:
- the value of the seedrecord component
 
- 
levelTypeReturns the value of thelevelTyperecord component.- Returns:
- the value of the levelTyperecord component
 
- 
generateStructurespublic boolean generateStructures()Returns the value of thegenerateStructuresrecord component.- Returns:
- the value of the generateStructuresrecord component
 
- 
experimentsReturns the value of theexperimentsrecord component.- Returns:
- the value of the experimentsrecord component
 
 
-