| Modifier and Type | Interface and Description |
|---|---|
interface |
Cardinality
Describes how and how many values should be fetched from a
Generator. |
static interface |
Cardinality.Fetcher
Retrieves elements from a generator.
|
interface |
DataSource<T>
|
interface |
Distribution
Describes a distribution of random values between 0 and 1.
|
static interface |
Distribution.RandomNumbers
A random number generator based on a
Distribution. |
interface |
Generator<T>
Endlessly produces values.
|
interface |
Sequence<T>
A source of values supporting random access.
|
interface |
Template<T>
Creates generators that will always produce the same values.
|
interface |
Values<T>
A list of values that has been produced by a generator.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractStringify |
| Modifier and Type | Method and Description |
|---|---|
static String |
Stringify.toString(Stringify stringify) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDistribution
Base class for implementations of
Distribution. |
class |
AbstractDistributionRandom
Base class for
RandomNumberss. |
class |
GaussianDistribution
A
Distribution where each value has the same probability. |
protected static class |
GaussianDistribution.GDRandom |
class |
UniformDistribution
A
Distribution where each value has the same probability. |
protected static class |
UniformDistribution.UDRandom |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Factory<T> |
static interface |
Factory.FactoryGenerator<T> |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultFactory<V> |
static class |
ValueGenerator.VG2G<T> |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
EagerFetcher.Template |
static interface |
LazyFetcher.Template |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractFetcher
Base class for
Fetchers. |
class |
EagerFetcher |
protected static class |
EagerFetcher.EagerCombinedValues<T> |
class |
FetcherWithScalar
A
Fetcher that requires a scalar value. |
class |
LazyFetcher |
protected static class |
LazyFetcher.LazyCombinedValues<T> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BiDataSource<T,U> |
interface |
BiGenerator<T,U> |
interface |
BiSequence<T,U> |
interface |
BiTemplate<T,U> |
interface |
FlCardinality |
static interface |
FlCardinality.FlFetcher |
static interface |
FlCardinality.Template |
interface |
FlDataSource<T>
Extends the
DataSource interface with methods for data composition. |
interface |
FlDistribution |
static interface |
FlDistribution.FlRandom |
static interface |
FlDistribution.Template |
interface |
FlGenerator<T>
Extends the
Generator interface for fluent methods. |
interface |
FlSequence<T> |
interface |
FlTemplate<T> |
interface |
FlValues<T> |
| Modifier and Type | Class and Description |
|---|---|
static class |
BiGenerator.Anonymous<T,U> |
static class |
BiSequence.Anonymous<T,U> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
CopyableGenerator<T> |
| Modifier and Type | Class and Description |
|---|---|
class |
AnonymousGenerator<T> |
class |
AnonymousSequence<T> |
class |
AnonymousTemplate<T> |
class |
BoundedSequence<T> |
class |
GeneratorWithDistribution<T>
Base class for
Generators that require an distribution. |
class |
GeneratorWithScalar<T>
A
Generator that requires a scalar value (e.g., to generate
strings with a certain length). |
| Modifier and Type | Class and Description |
|---|---|
class |
DistinctGenerator<T>
Uses a HashSet to ensure values are not returned twice.
|
class |
FilteringGenerator<T>
Uses a HashSet to ensure values are not returned twice.
|
class |
FlatMappingGenerator<T> |
class |
GeneratorQueue<T>
A queue of generators that fetches a certain number of elements from
each and then uses the next.
|
protected static class |
GeneratorQueue.Fetch<T> |
class |
MappingGenerator<T> |
class |
MergingGenerator<T>
Merges multiple generators that produce sorted values into one.
|
class |
MixingGenerator<T>
Produces values from randomly selected generators.
|
class |
RandomizedSequenceGenerator<T>
Randomly selects elements from a sequence.
|
class |
RepeatingGenerator<T>
Converts a list of finite generators into an inifinte generator.
|
class |
RoundRobinGenerator<T> |
class |
RoundRobinSequence<T> |
class |
ShuffledSequenceGenerator<T>
Returns the elements of a sequence in random order.
|
class |
ShufflingGenerator<T> |
| Modifier and Type | Class and Description |
|---|---|
class |
BooleansGenerator
Generates random booleans.
|
class |
CharactersGenerator
Generates random characters.
|
static class |
CharactersGenerator.FromString |
static class |
CharactersGenerator.InRange |
class |
ConsecutiveIntegersSequence
Generates consecutive integers.
|
class |
DoublesGenerator
Generates random doubles in a given range.
|
class |
RandomIntegersGenerator
Generates random integers in a given range.
|
static class |
RandomIntegersGenerator.Template |
class |
StringsGenerator
Generates random strings.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ConstantValue<T> |
class |
EmptySequence<T> |
class |
ItemsSequence<T> |
static class |
ItemsSequence.FromArray<T> |
static class |
ItemsSequence.FromCollection<T> |
static class |
ItemsSequence.FromRAList<T> |
class |
PermutationsGenerator<T> |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractValues<T>
Base class for
Values implementations. |
class |
EagerValues<T>
Values immediately fetched from a generator.
|
class |
LazyValues<T>
Values fetched from generators on demand.
|
Copyright © 2019. All rights reserved.