Uses of Interface
de.cuioss.test.generator.internal.net.java.quickcheck.generator.distribution.Distribution
-
-
Uses of Distribution in de.cuioss.test.generator.internal.net.java.quickcheck.generator
Methods in de.cuioss.test.generator.internal.net.java.quickcheck.generator with parameters of type Distribution Modifier and Type Method Description static Generator<Byte>Generators. bytes(byte lo, byte hi, Distribution distribution)Create a new integer generator which creates integers ranging from lo to hi based on the givenDistribution.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 givenDistribution.static Generator<Double>Generators. doubles(double lo, double hi, Distribution distribution)Create a new double generator which creates doubles ranging from lo to hi based on the givenDistribution.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 givenDistribution.static Generator<Integer>Generators. integers(int lo, int hi, Distribution distribution)Create a new integer generator which creates integers ranging fromlotohibased on the givenDistribution.static Generator<Integer>PrimitiveGenerators. integers(int lo, int hi, Distribution distribution)Create a new integer generator which creates integers ranging fromlotohibased on the givenDistribution.static Generator<Long>Generators. longs(long lo, long hi, Distribution distribution)Create a new long generator which creates longs ranging from lo to hi based on the givenDistribution.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 givenDistribution. -
Uses of Distribution in de.cuioss.test.generator.internal.net.java.quickcheck.generator.distribution
Classes in de.cuioss.test.generator.internal.net.java.quickcheck.generator.distribution that implement Distribution Modifier and Type Class Description static classDistribution.AbstractDistributionFields in de.cuioss.test.generator.internal.net.java.quickcheck.generator.distribution declared as Distribution Modifier and Type Field Description static DistributionDistribution. INVERTED_NORMALAn inverted bell curve.static DistributionDistribution. NEGATIV_NORMALLeft side of the bell curve.static DistributionDistribution. POSITIV_NORMALRight side of the bell curve.static DistributionDistribution. UNIFORMA uniform distribution function. -
Uses of Distribution in de.cuioss.test.generator.internal.net.java.quickcheck.generator.support
Constructors in de.cuioss.test.generator.internal.net.java.quickcheck.generator.support with parameters of type Distribution Constructor Description 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)
-