Record Class RandomSupport.Seed128bit
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.RandomSupport.Seed128bit
- Enclosing class:
- RandomSupport
-
Field Summary
-
Constructor Summary
ConstructorDescriptionSeed128bit
(long seedLo, long seedHi) Creates an instance of aSeed128bit
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.long
seedHi()
Returns the value of theseedHi
record component.long
seedLo()
Returns the value of theseedLo
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
seedLo
private final long seedLoThe field for theseedLo
record component. -
seedHi
private final long seedHiThe field for theseedHi
record component.
-
-
Constructor Details
-
Seed128bit
public Seed128bit(long seedLo, long seedHi) Creates an instance of aSeed128bit
record class.- Parameters:
seedLo
- the value for theseedLo
record componentseedHi
- the value for theseedHi
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 with '=='. -
seedLo
public long seedLo()Returns the value of theseedLo
record component.- Returns:
- the value of the
seedLo
record component
-
seedHi
public long seedHi()Returns the value of theseedHi
record component.- Returns:
- the value of the
seedHi
record component
-