|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use AbstractNumberGenerator | |
|---|---|
| org.databene.benerator.distribution | |
| org.databene.benerator.distribution.sequence | |
| org.databene.benerator.primitive.number | Defines a small framework for generating numbers of all built-in Java number types (byte, short, int, long, BigInteger, float, double, BigDecimal) resulting from a sequence or being distributed according a distribution function. |
| org.databene.benerator.test | |
| org.databene.domain.math | |
| Uses of AbstractNumberGenerator in org.databene.benerator.distribution |
|---|
| Subclasses of AbstractNumberGenerator in org.databene.benerator.distribution | |
|---|---|
static class |
CumulativeDistributionFunction.IPINumberGenerator<E extends Number>
Generates numbers according to an CumulativeDistributionFunction. |
class |
WeightedDoubleGenerator
Double Generator that supports a weight function. |
class |
WeightedLongGenerator
Long Generator that supports a weight function. |
| Uses of AbstractNumberGenerator in org.databene.benerator.distribution.sequence |
|---|
| Subclasses of AbstractNumberGenerator in org.databene.benerator.distribution.sequence | |
|---|---|
class |
BitReverseLongGenerator
Generates integers reversing the bits of a continuously rising number. |
class |
CumulatedDoubleGenerator
Double Generator that implements a 'cumulated' Double Sequence. |
class |
CumulatedLongGenerator
Long Generator that implements a 'cumulated' Long Sequence. |
class |
RandomDoubleGenerator
Double Generator that implements a 'random' Double Sequence. |
class |
RandomIntegerGenerator
Creates random Integer values with a uniform distribution. |
class |
RandomLongGenerator
Long Generator that implements a 'random' Long Sequence. |
class |
RandomWalkDoubleGenerator
Double Generator that implements a 'randomWalk' Double Sequence. |
class |
RandomWalkLongGenerator
Long Generator that implements a 'randomWalk' Long Sequence. |
class |
ShuffleDoubleGenerator
Double Generator that implements a 'shuffle' Double Sequence. |
class |
ShuffleLongGenerator
Long Generator that implements a 'shuffle' Long Sequence: It starts with min and produced numbers by continuously incrementing the cursor by a fix increment value; when max is reached, it
repeats the procedure starting by min+precision, later min+2*precision and so on. |
class |
StepDoubleGenerator
Double Generator that implements a 'step' Double Sequence. |
class |
StepLongGenerator
Long Generator that implements a 'step' Long Sequence. |
class |
WedgeDoubleGenerator
Generates 'Double' values for the 'wedge' sequence. |
class |
WedgeLongGenerator
Long Generator that implements a 'wedge' Long Sequence. |
| Uses of AbstractNumberGenerator in org.databene.benerator.primitive.number |
|---|
| Subclasses of AbstractNumberGenerator in org.databene.benerator.primitive.number | |
|---|---|
class |
AbstractBigDecimalGenerator
Wrapper for a LongGenerator that maps the generated Longs to BigDecimals. |
class |
AbstractBigIntegerGenerator
Wrapper for a LongGenerator that maps the generated Longs to BigIntegers. |
class |
RecurrenceRelationNumberGenerator<E extends Number>
Parent class for Number Generators that calculate numbers recursively. |
| Uses of AbstractNumberGenerator in org.databene.benerator.test |
|---|
| Method parameters in org.databene.benerator.test with type arguments of type AbstractNumberGenerator | ||
|---|---|---|
static
|
NullableGeneratorTest.checkEqualDistribution(java.lang.Class<? extends AbstractNumberGenerator<T>> generatorClass,
T min,
T max,
T precision,
int iterations,
double tolerance,
java.util.Set<T> expectedSet)
|
|
static
|
GeneratorTest.checkEqualDistribution(java.lang.Class<? extends AbstractNumberGenerator<T>> generatorClass,
T min,
T max,
T precision,
int iterations,
double tolerance,
java.util.Set<T> expectedSet)
|
|
static
|
NullableGeneratorTest.checkEqualDistribution(java.lang.Class<? extends AbstractNumberGenerator<T>> generatorClass,
T min,
T max,
T precision,
int iterations,
double tolerance,
T... expectedValues)
|
|
static
|
GeneratorTest.checkEqualDistribution(java.lang.Class<? extends AbstractNumberGenerator<T>> generatorClass,
T min,
T max,
T precision,
int iterations,
double tolerance,
T... expectedValues)
|
|
| Uses of AbstractNumberGenerator in org.databene.domain.math |
|---|
| Subclasses of AbstractNumberGenerator in org.databene.domain.math | |
|---|---|
class |
FibonacciLongGenerator
Generates Fibonacci Numbers. |
class |
PadovanLongGenerator
Generates numbers according to the Padovan Sequence. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||