Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.Random

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);
}
Extended By:
SecureRandom.
Passed To:
BigInteger.BigInteger().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.