Record Class RandomSupport.Seed128bit
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.RandomSupport.Seed128bit
- Enclosing class:
RandomSupport
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSeed128bit(long seedLo, long seedHi) Creates an instance of aSeed128bitrecord class. -
Method Summary
Modifier 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
-
seedLo
private final long seedLoThe field for theseedLorecord component. -
seedHi
private final long seedHiThe field for theseedHirecord component.
-
-
Constructor Details
-
Seed128bit
public Seed128bit(long seedLo, long seedHi) Creates an instance of aSeed128bitrecord class.- Parameters:
seedLo- the value for theseedLorecord componentseedHi- the value for theseedHirecord component
-
-
Method Details
-
xor
-
xor
-
mixed
-
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 theseedLorecord component.- Returns:
- the value of the
seedLorecord component
-
seedHi
public long seedHi()Returns the value of theseedHirecord component.- Returns:
- the value of the
seedHirecord component
-