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 lo, long hi) xor(RandomSupport.Seed128bit other)
-
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
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
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
-