public abstract class RandomEngine
extends java.lang.Object
Constructor and Description |
---|
RandomEngine() |
Modifier and Type | Method and Description |
---|---|
abstract RandomEngine |
clone() |
long |
getSeed() |
abstract double |
nextDouble() |
abstract float |
nextFloat() |
abstract double |
nextGaussian() |
abstract int |
nextInt() |
abstract int |
nextInt(int n) |
abstract long |
nextLong() |
abstract long |
nextLong(long l) |
double |
random() |
void |
setSeed(long seed) |
public void setSeed(long seed)
public long getSeed()
public abstract double nextGaussian()
public abstract double nextDouble()
public abstract float nextFloat()
public abstract int nextInt()
public abstract int nextInt(int n)
public abstract long nextLong()
public abstract long nextLong(long l)
public double random()
public abstract RandomEngine clone()
clone
in class java.lang.Object