Uses of Interface
de.cuioss.test.generator.internal.net.java.quickcheck.generator.distribution.Distribution
Packages that use Distribution
Package
Description
-
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 DistributionModifier and TypeMethodDescriptionGenerators.bytes(byte lo, byte hi, Distribution distribution) Create a new integer generator which creates integers ranging from lo to hi based on the givenDistribution.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.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.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.Generators.integers(int lo, int hi, Distribution distribution) Create a new integer generator which creates integers ranging fromlotohibased on the givenDistribution.PrimitiveGenerators.integers(int lo, int hi, Distribution distribution) Create a new integer generator which creates integers ranging fromlotohibased on the givenDistribution.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.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 DistributionFields in de.cuioss.test.generator.internal.net.java.quickcheck.generator.distribution declared as DistributionModifier and TypeFieldDescriptionstatic final DistributionDistribution.INVERTED_NORMALAn inverted bell curve.static final DistributionDistribution.NEGATIV_NORMALLeft side of the bell curve.static final DistributionDistribution.POSITIV_NORMALRight side of the bell curve.static final 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 DistributionModifierConstructorDescriptionByteGenerator(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)