public interface RandomGenerator
Modifier and Type | Method and Description |
---|---|
double |
nextDouble()
Returns a 64 bit uniformly distributed random number in the open unit interval
(0.0,1.0) (excluding 0.0 and 1.0). |
float |
nextFloat()
Returns a 32 bit uniformly distributed random number in the open unit interval
(0.0f,1.0f) (excluding 0.0f and 1.0f). |
int |
nextInt()
Returns a 32 bit uniformly distributed random number in the closed interval [Integer.MIN_VALUE,Integer.MAX_VALUE] (including Integer.MIN_VALUE and Integer.MAX_VALUE);
|
long |
nextLong()
Returns a 64 bit uniformly distributed random number in the closed interval [Long.MIN_VALUE,Long.MAX_VALUE] (including Long.MIN_VALUE and Long.MAX_VALUE).
|
double |
raw()
Returns a 32 bit uniformly distributed random number in the open unit interval
(0.0,1.0) (excluding 0.0 and 1.0). |
double raw()
(0.0,1.0)
(excluding 0.0 and 1.0).double nextDouble()
(0.0,1.0)
(excluding 0.0 and 1.0).int nextInt()
long nextLong()
float nextFloat()
(0.0f,1.0f)
(excluding 0.0f and 1.0f).Jas4pp 1.5 © Java Analysis Studio for Particle Physics