static <T> StatefulGenerator<T> |
CombinedGenerators.ensureValues(Iterable<T> ensuredValues) |
Create a deterministic generator which guarantees that all values from
the ensuredValues collection will be return
Generator.next() are issued (i.e.
|
static <T> StatefulGenerator<T> |
CombinedGenerators.ensureValues(Iterable<T> ensuredValues,
int window,
Generator<T> otherValues) |
Create a generator which guarantees that all values from the
ensuredValues will be return
Generator.next() are issued.
|
static <T> StatefulGenerator<T> |
CombinedGenerators.ensureValues(Iterable<T> ensuredValues,
Generator<T> otherValues) |
Create a deterministic generator which guarantees that all values from
the ensuredValues collection will be return
Generator.next() are issued (i.e.
|
static <T> StatefulGenerator<T> |
CombinedGenerators.ensureValues(T... content) |
Create a deterministic generator which guarantees that all values from
the ensuredValues array will be return
Generator.next() are issued (i.e.
|
static <T> StatefulGenerator<T> |
Generators.ensureValues(Iterable<T> ensuredValues) |
Create a deterministic generator which guarantees that all values from
the ensuredValues collection will be returned if enough calls to
Generator.next() are issued (i.e.
|
static <T> StatefulGenerator<T> |
Generators.ensureValues(Iterable<T> ensuredValues,
int window,
Generator<T> otherValues) |
Create a generator which guarantees that all values from the
ensuredValues will be returned in a defined window when enough calls to
Generator.next() are issued.
|
static <T> StatefulGenerator<T> |
Generators.ensureValues(Iterable<T> ensuredValues,
Generator<T> otherValues) |
Create a deterministic generator which guarantees that all values from
the ensuredValues collection will be returned if enough calls to
Generator.next() are issued (i.e.
|
static <T> StatefulGenerator<T> |
Generators.ensureValues(T... content) |
Create a deterministic generator which guarantees that all values from
the ensuredValues array will be returned if enough calls to
Generator.next() are issued (i.e.
|
static <T> StatefulGenerator<T> |
CombinedGenerators.uniqueValues(Generator<T> generator) |
Create a generator that ensures unique values
|
static <T> StatefulGenerator<T> |
CombinedGenerators.uniqueValues(Generator<T> generator,
int tries) |
Create a generator that ensures unique values.
|
static <T> StatefulGenerator<T> |
CombinedGenerators.uniqueValues(Generator<T> generator,
Comparator<? super T> comparator) |
Create a generator that ensures unique values.
|
static <T> StatefulGenerator<T> |
CombinedGenerators.uniqueValues(Generator<T> generator,
Comparator<? super T> comparator,
int tries) |
Create a generator that ensures unique values.
|
static <T> StatefulGenerator<T> |
Generators.uniqueValues(Generator<T> generator) |
Create a generator that ensures unique values
|
static <T> StatefulGenerator<T> |
Generators.uniqueValues(Generator<T> generator,
int tries) |
Create a generator that ensures unique values.
|
static <T> StatefulGenerator<T> |
Generators.uniqueValues(Generator<T> generator,
Comparator<? super T> comparator) |
Create a generator that ensures unique values.
|
static <T> StatefulGenerator<T> |
Generators.uniqueValues(Generator<T> generator,
Comparator<? super T> comparator,
int tries) |
Create a generator that ensures unique values.
|