|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.lang.math.RandomUtils
RandomUtils
is a wrapper that supports all possible
Random
methods via the Math.random()
method and its system-wide Random
object.
Field Summary | |
static Random |
JVM_RANDOM
|
Constructor Summary | |
RandomUtils()
|
Method Summary | |
static boolean |
nextBoolean()
Returns the next pseudorandom, uniformly distributed boolean value from the Math.random() sequence. |
static boolean |
nextBoolean(Random rnd)
|
static double |
nextDouble()
Synonymous to the Math.random() call. |
static double |
nextDouble(Random rnd)
|
static float |
nextFloat()
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from the Math.random()
sequence. |
static float |
nextFloat(Random rnd)
|
static int |
nextInt()
Returns the next pseudorandom, uniformly distributed int value from the Math.random() sequence. |
static int |
nextInt(int n)
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value
(exclusive), from the Math.random() sequence. |
static int |
nextInt(Random rnd)
|
static int |
nextInt(Random rnd,
int n)
|
static long |
nextLong()
Returns the next pseudorandom, uniformly distributed long value from the Math.random() sequence. |
static long |
nextLong(Random rnd)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final Random JVM_RANDOM
Constructor Detail |
public RandomUtils()
Method Detail |
public static int nextInt()
Returns the next pseudorandom, uniformly distributed int value from the Math.random() sequence.
public static int nextInt(Random rnd)
public static int nextInt(int n)
Returns a pseudorandom, uniformly distributed int value
between 0
(inclusive) and the specified value
(exclusive), from the Math.random() sequence.
n
- the specified exclusive max-value
public static int nextInt(Random rnd, int n)
public static long nextLong()
Returns the next pseudorandom, uniformly distributed long value from the Math.random() sequence.
public static long nextLong(Random rnd)
public static boolean nextBoolean()
Returns the next pseudorandom, uniformly distributed boolean value from the Math.random() sequence.
public static boolean nextBoolean(Random rnd)
public static float nextFloat()
Returns the next pseudorandom, uniformly distributed float value
between 0.0
and 1.0
from the Math.random()
sequence.
public static float nextFloat(Random rnd)
public static double nextDouble()
Synonymous to the Math.random() call.
public static double nextDouble(Random rnd)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |