java.util
Class Random

java.lang.Object
  |
  +--java.util.Random

public class Random
extends Object


Constructor Summary
Random()
           
Random(long l)
           
 
Method Summary
protected  int next(int i)
           
 boolean nextBoolean()
           
 void nextBytes(byte[] abyte0)
           
 double nextDouble()
           
 float nextFloat()
           
 int nextInt()
           
 int nextInt(int i)
           
 long nextLong()
           
 void setSeed(long l)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, toString
 

Constructor Detail

Random

public Random()

Random

public Random(long l)
Method Detail

setSeed

public void setSeed(long l)

next

protected int next(int i)

nextBoolean

public boolean nextBoolean()

nextBytes

public void nextBytes(byte[] abyte0)

nextDouble

public double nextDouble()

nextFloat

public float nextFloat()

nextInt

public int nextInt()

nextInt

public int nextInt(int i)

nextLong

public long nextLong()