Method Summary |
|
native public static boolean | nextBoolean() Returns true or false with roughly equal probability. |
native public static double | nextDouble() Returns a random double between 0 (inclusive) and 1
(exclusive). |
native public static int | nextInt() Returns a random int between -2147483648 and 2147483647
(inclusive) with roughly equal probability of returning any particular
int in this range. |
native public static int | nextInt(int upperBound) Returns a random int between 0 (inclusive) and
upperBound (exclusive) with roughly equal probability of
returning any particular int in this range. |