Record Class RandomSupport.Seed128bit
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.RandomSupport.Seed128bit
- Enclosing class:
- RandomSupport
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionSeed128bit(long seedLo, long seedHi) Creates an instance of aSeed128bitrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mixed()longseedHi()Returns the value of theseedHirecord component.longseedLo()Returns the value of theseedLorecord component.final StringtoString()Returns a string representation of this record class.xor(long p_288963_, long p_288992_) xor(RandomSupport.Seed128bit p_289009_) 
- 
Field Details- 
seedLoprivate final long seedLoThe field for theseedLorecord component.
- 
seedHiprivate final long seedHiThe field for theseedHirecord component.
 
- 
- 
Constructor Details- 
Seed128bitpublic Seed128bit(long seedLo, long seedHi) Creates an instance of aSeed128bitrecord class.- Parameters:
- seedLo- the value for the- seedLorecord component
- seedHi- the value for the- seedHirecord component
 
 
- 
- 
Method Details- 
xor
- 
xor
- 
mixed
- 
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. All components in this record class are compared with '=='.
- 
seedLopublic long seedLo()Returns the value of theseedLorecord component.- Returns:
- the value of the seedLorecord component
 
- 
seedHipublic long seedHi()Returns the value of theseedHirecord component.- Returns:
- the value of the seedHirecord component
 
 
-