Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class Random extends Object implements Serializable {
   // Public Constructors
      public Random();
      public Random(long seed);
   // Public Instance Methods
1.1  public void nextBytes(byte[] bytes);
      public double nextDouble();
      public float nextFloat();
      public synchronized double nextGaussian();
      public int nextInt();
      public long nextLong();
      public synchronized void setSeed(long seed);
   // Protected Instance Methods
      protected synchronized int next(int bits);
}