Uses of Interface
org.apache.commons.math.random.RandomGenerator

Packages that use RandomGenerator
org.apache.commons.math.random Random number and random data generators. 
 

Uses of RandomGenerator in org.apache.commons.math.random
 

Classes in org.apache.commons.math.random that implement RandomGenerator
 class AbstractRandomGenerator
          Abstract class implementing the RandomGenerator interface.
 class JDKRandomGenerator
          Extension of java.util.Random to implement RandomGenerator.
 class RandomAdaptor
          Extension of java.util.Random wrapping a RandomGenerator.
 

Fields in org.apache.commons.math.random declared as RandomGenerator
private  RandomGenerator GaussianRandomGenerator.generator
          Underlying generator.
private  RandomGenerator UniformRandomGenerator.generator
          Underlying generator.
private  RandomGenerator RandomDataImpl.rand
          underlying random number generator
private  RandomGenerator RandomAdaptor.randomGenerator
          Wrapped randomGenerator instance
 

Methods in org.apache.commons.math.random that return RandomGenerator
private  RandomGenerator RandomDataImpl.getRan()
          Returns the RandomGenerator used to generate non-secure random data.
 

Methods in org.apache.commons.math.random with parameters of type RandomGenerator
static java.util.Random RandomAdaptor.createAdaptor(RandomGenerator randomGenerator)
          Factory method to create a Random using the supplied RandomGenerator.
 

Constructors in org.apache.commons.math.random with parameters of type RandomGenerator
GaussianRandomGenerator(RandomGenerator generator)
          Create a new generator.
RandomAdaptor(RandomGenerator randomGenerator)
          Construct a RandomAdaptor wrapping the supplied RandomGenerator.
RandomDataImpl(RandomGenerator rand)
          Construct a RandomDataImpl using the supplied RandomGenerator as the source of (non-secure) random data.
UniformRandomGenerator(RandomGenerator generator)
          Create a new generator.