Uses of Interface
net.java.quickcheck.generator.distribution.Distribution

Packages that use Distribution
net.java.quickcheck.generator   
net.java.quickcheck.generator.distribution   
net.java.quickcheck.generator.support   
 

Uses of Distribution in net.java.quickcheck.generator
 

Methods in net.java.quickcheck.generator with parameters of type Distribution
static Byte PrimitiveGeneratorSamples.anyByte(byte lo, byte hi, Distribution distribution)
          See documentation of PrimitiveGenerators.bytes().
static Double PrimitiveGeneratorSamples.anyDouble(double lo, double hi, Distribution distribution)
          See documentation of PrimitiveGenerators.doubles().
static Integer PrimitiveGeneratorSamples.anyInteger(int lo, int hi, Distribution distribution)
          See documentation of PrimitiveGenerators.integers().
static Long PrimitiveGeneratorSamples.anyLong(long lo, long hi, Distribution distribution)
          See documentation of PrimitiveGenerators.longs().
static Generator<Byte> PrimitiveGenerators.bytes(byte lo, byte hi, Distribution distribution)
          Create a new integer generator which creates integers ranging from lo to hi based on the given Distribution.
static Generator<Double> PrimitiveGenerators.doubles(double lo, double hi, Distribution distribution)
          Create a new double generator which creates doubles ranging from lo to hi based on the given Distribution.
static Generator<Integer> PrimitiveGenerators.integers(int lo, int hi, Distribution distribution)
          Create a new integer generator which creates integers ranging from lo to hi based on the given Distribution.
static Generator<Long> PrimitiveGenerators.longs(long lo, long hi, Distribution distribution)
          Create a new long generator which creates longs ranging from lo to hi based on the given Distribution.
static Iterable<Byte> PrimitiveGeneratorsIterables.someBytes(byte lo, byte hi, Distribution distribution)
          See documentation of PrimitiveGenerators.bytes().
static Iterable<Double> PrimitiveGeneratorsIterables.someDoubles(double lo, double hi, Distribution distribution)
          See documentation of PrimitiveGenerators.doubles().
static Iterable<Integer> PrimitiveGeneratorsIterables.someIntegers(int lo, int hi, Distribution distribution)
          See documentation of PrimitiveGenerators.integers().
static Iterable<Long> PrimitiveGeneratorsIterables.someLongs(long lo, long hi, Distribution distribution)
          See documentation of PrimitiveGenerators.longs().
 

Uses of Distribution in net.java.quickcheck.generator.distribution
 

Classes in net.java.quickcheck.generator.distribution that implement Distribution
static class Distribution.AbstractDistribution
           
 

Fields in net.java.quickcheck.generator.distribution declared as Distribution
static Distribution Distribution.INVERTED_NORMAL
          An inverted bell curve.
static Distribution Distribution.NEGATIV_NORMAL
          Left side of the bell curve.
static Distribution Distribution.POSITIV_NORMAL
          Right side of the bell curve.
static Distribution Distribution.UNIFORM
          A uniform distribution function.
 

Uses of Distribution in net.java.quickcheck.generator.support
 

Constructors in net.java.quickcheck.generator.support with parameters of type Distribution
ByteGenerator(byte min, byte max, Distribution dist)
           
DoubleGenerator(double min, double max, Distribution dist)
           
IntegerGenerator(int min, int max, Distribution dist)
           
LongGenerator(long min, long max, Distribution dist)
           
 



Copyright © 2011. All Rights Reserved.