class: java.util.Random
////////////////
Constructor Summary:
Random() 
          Creates a new random number generator. 
Random(long seed) 
          Creates a new random number generator using a single long seed:
//////////////// 
Method Summary:protected  int next(int bits) 
          Generates the next pseudorandom number. 
 boolean nextBoolean() 
          Returns the next pseudorandom, uniformly distributed boolean value from this random number generator's sequence. 
 void nextBytes(byte[] bytes) 
          Generates random bytes and places them into a user-supplied byte array. 
 double nextDouble() 
          Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence. 
 float nextFloat() 
          Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence. 
 double nextGaussian() 
          Returns the next pseudorandom, Gaussian ("normally") distributed double value with mean 0.0 and standard deviation 1.0 from this random number generator's sequence. 
 int nextInt() 
          Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence. 
 int nextInt(int n) 
          Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence. 
 long nextLong() 
          Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence. 
 void setSeed(long seed) 
          Sets the seed of this random number generator using a single long seed.