Package net.minecraft.util.math.random
Record Class RandomSeed.XoroshiroSeed
java.lang.Object
java.lang.Record
net.minecraft.util.math.random.RandomSeed.XoroshiroSeed
- Record Components:
- seedLo-
- seedHi-
- Enclosing class:
- RandomSeed
- Mappings:
- Namespace - Name - official - dhz$a- intermediary - net/minecraft/class_6673$class_6674- named - net/minecraft/util/math/random/RandomSeed$XoroshiroSeed- official - a- intermediary - comp_166- named - seedLo- official - b- intermediary - comp_167- named - seedHi
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mix()longseedHi()Returns the value of theseedHirecord component.longseedLo()Returns the value of theseedLorecord component.split(long seedLo, long seedHi) final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
XoroshiroSeedpublic XoroshiroSeed(long long2, long long3) 
 
- 
- 
Method Details- 
split- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldhz$a;a(JJ)Ldhz$a;- intermediary - method_52181- Lnet/minecraft/class_6673$class_6674;method_52181(JJ)Lnet/minecraft/class_6673$class_6674;- named - split- Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;split(JJ)Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;
 
- 
split- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldhz$a;a(Ldhz$a;)Ldhz$a;- intermediary - method_52182- Lnet/minecraft/class_6673$class_6674;method_52182(Lnet/minecraft/class_6673$class_6674;)Lnet/minecraft/class_6673$class_6674;- named - split- Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;split(Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;)Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;
 
- 
mix- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldhz$a;a()Ldhz$a;- intermediary - method_52212- Lnet/minecraft/class_6673$class_6674;method_52212()Lnet/minecraft/class_6673$class_6674;- named - mix- Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;mix()Lnet/minecraft/util/math/random/RandomSeed$XoroshiroSeed;
 
- 
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
 
 
-