static <T> Generator<T[]> |
CombinedGenerators.arrays(Generator<? extends T> content,
Generator<Integer> size,
Class<T> type) |
Create a generator of arrays with values from the content generator.
|
static <T> Generator<T[]> |
CombinedGenerators.arrays(Generator<? extends T> content,
Class<T> type) |
Create a generator of arrays with values from the content generator.
|
static <T> Generator<T[]> |
Generators.arrays(Generator<? extends T> content,
Generator<Integer> size,
Class<T> type) |
Create a generator of arrays with values from the content generator.
|
static <T> Generator<T[]> |
Generators.arrays(Generator<? extends T> content,
Class<T> type) |
Create a generator of arrays with values from the content generator.
|
static Generator<Character> |
Generators.basicLatinCharacters() |
Create a new character generator which generates latin characters.
|
static Generator<Character> |
PrimitiveGenerators.basicLatinCharacters() |
Create a new character generator which generates latin characters.
|
static Generator<Boolean> |
Generators.booleans() |
Create a generator for boolean values.
|
static Generator<Boolean> |
PrimitiveGenerators.booleans() |
Create a generator for boolean values.
|
static Generator<byte[]> |
CombinedGenerators.byteArrays() |
Create a generator of byte arrays.
|
static Generator<byte[]> |
CombinedGenerators.byteArrays(Generator<Byte> content,
Generator<Integer> size) |
Create a generator of byte arrays.
|
static Generator<byte[]> |
CombinedGenerators.byteArrays(Generator<Integer> size) |
Create a generator of byte arrays.
|
static Generator<byte[]> |
Generators.byteArrays() |
Create a generator of byte arrays.
|
static Generator<byte[]> |
Generators.byteArrays(Generator<Byte> content,
Generator<Integer> size) |
Create a generator of byte arrays.
|
static Generator<byte[]> |
Generators.byteArrays(Generator<Integer> size) |
Create a generator of byte arrays.
|
static Generator<Byte> |
Generators.bytes() |
|
static Generator<Byte> |
Generators.bytes(byte lo,
byte hi) |
Create a new byte generator which creates byte values ranging from lo to
hi.
|
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 given Distribution.
|
static Generator<Byte> |
PrimitiveGenerators.bytes() |
|
static Generator<Byte> |
PrimitiveGenerators.bytes(byte lo,
byte hi) |
Create a new byte generator which creates byte values ranging from lo to
hi.
|
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 given Distribution.
|
static <T> Generator<T> |
Generators.cast(Generator<? extends T> generator) |
Cast a generator to a super type generator.
|
static Generator<Character> |
Generators.characters() |
Create a new character generator.
The characters are from the Basic Latin and Latin-1 Supplement unicode blocks.
|
static Generator<Character> |
Generators.characters(char lo,
char hi) |
Create a new character generator which generates characters ranging from
lo to hi.
|
static Generator<Character> |
Generators.characters(Character... chars) |
Create a new character generator which generates characters from the
given character array.
|
static Generator<Character> |
Generators.characters(Iterable<Character> chars) |
Create a new character generator which generates characters from the
given characters.
|
static Generator<Character> |
Generators.characters(String string) |
Create a new character generator which generates characters from the
given string.
|
static Generator<Character> |
PrimitiveGenerators.characters() |
Create a new character generator.
The characters are from the Basic Latin and Latin-1 Supplement unicode blocks.
|
static Generator<Character> |
PrimitiveGenerators.characters(char lo,
char hi) |
Create a new character generator which generates characters ranging from
lo to hi.
|
static Generator<Character> |
PrimitiveGenerators.characters(Character... chars) |
Create a new character generator which generates characters from the
given character array.
|
static Generator<Character> |
PrimitiveGenerators.characters(Iterable<Character> chars) |
Create a new character generator which generates characters from the
given characters.
|
static Generator<Character> |
PrimitiveGenerators.characters(String string) |
Create a new character generator which generates characters from the
given string.
|
static <T> Generator<T> |
Generators.clonedValues(T prototype) |
A cloning generator which uses object serialization to create clones of
the prototype object.
|
static <T> Generator<T> |
PrimitiveGenerators.clonedValues(T prototype) |
A cloning generator which uses object serialization to create clones of
the prototype object.
|
static Generator<Date> |
Generators.dates() |
Create a generator for date values.
|
static Generator<Date> |
Generators.dates(long low,
long high) |
Create a generator for date values from low to high.
|
static Generator<Date> |
Generators.dates(Long low,
Long high,
TimeUnit precision) |
Create a generator for date values from low to high with the given
precision.
|
static Generator<Date> |
Generators.dates(TimeUnit precision) |
Create a generator for date values with the given precision.
|
static Generator<Date> |
Generators.dates(Date low,
Date high) |
Create a generator for date values from low to high.
|
static Generator<Date> |
PrimitiveGenerators.dates() |
Create a generator for date values.
|
static Generator<Date> |
PrimitiveGenerators.dates(long low,
long high) |
Create a generator for date values from low to high.
|
static Generator<Date> |
PrimitiveGenerators.dates(Long low,
Long high,
TimeUnit precision) |
Create a generator for date values from low to high with the given
precision.
|
static Generator<Date> |
PrimitiveGenerators.dates(TimeUnit precision) |
Create a generator for date values with the given precision.
|
static Generator<Date> |
PrimitiveGenerators.dates(Date low,
Date high) |
Create a generator for date values from low to high.
|
static Generator<Double> |
Generators.doubles() |
|
static Generator<Double> |
Generators.doubles(double lo,
double hi) |
Create a new double generator which creates doubles ranging from lo to
hi.
|
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 given Distribution.
|
static Generator<Double> |
PrimitiveGenerators.doubles() |
|
static Generator<Double> |
PrimitiveGenerators.doubles(double lo,
double hi) |
Create a new double generator which creates doubles ranging from lo to
hi.
|
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 given Distribution.
|
static <T> Generator<List<T>> |
CombinedGenerators.duplicates(Iterable<T> input) |
Create a generator that produces lists of duplicates.
|
static <T> Generator<List<T>> |
CombinedGenerators.duplicates(T... input) |
Create a generator that produces lists of duplicates.
|
static <T> Generator<List<T>> |
Generators.duplicates(Iterable<T> input) |
Create a generator that produces lists of duplicates.
|
static <T> Generator<List<T>> |
Generators.duplicates(T... input) |
Create a generator that produces lists of duplicates.
|
static <T extends Enum<T>> Generator<T> |
Generators.enumValues(Class<T> enumClass) |
Create a generator of enumeration values.
|
static <T extends Enum<T>> Generator<T> |
Generators.enumValues(Class<T> enumClass,
Iterable<T> excludedValues) |
Create a generator of enumeration values.
|
static <T extends Enum<T>> Generator<T> |
Generators.enumValues(Class<T> enumClass,
T... excluded) |
Create a generator of enumeration values.
|
static <T extends Enum<T>> Generator<T> |
PrimitiveGenerators.enumValues(Class<T> enumClass) |
Create a generator of enumeration values.
|
static <T extends Enum<T>> Generator<T> |
PrimitiveGenerators.enumValues(Class<T> enumClass,
Iterable<T> excludedValues) |
Create a generator of enumeration values.
|
static <T extends Enum<T>> Generator<T> |
PrimitiveGenerators.enumValues(Class<T> enumClass,
T... excluded) |
Create a generator of enumeration values.
|
static <T> Generator<T> |
CombinedGenerators.excludeValues(Generator<T> generator,
Iterable<T> excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
CombinedGenerators.excludeValues(Generator<T> generator,
T... excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
CombinedGenerators.excludeValues(Iterable<T> values,
Iterable<T> excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
CombinedGenerators.excludeValues(Iterable<T> values,
T... excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
Generators.excludeValues(Generator<T> generator,
Iterable<T> excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
Generators.excludeValues(Generator<T> generator,
T excluded) |
Create a generator that omits a given value.
|
static <T> Generator<T> |
Generators.excludeValues(Generator<T> generator,
T... excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
Generators.excludeValues(Iterable<T> values,
Iterable<T> excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
Generators.excludeValues(Iterable<T> values,
T... excluded) |
Create a generator that omits a given set of values.
|
static <T> Generator<T> |
Generators.fixedValues(Iterable<T> values) |
Create a fixed value generator returning one of the values from the
values.
|
static <T> Generator<T> |
Generators.fixedValues(T value) |
Create a generator for fixed value generator.
|
static <T> Generator<T> |
Generators.fixedValues(T... values) |
Create a fixed value generator returning one of the values from the
values array.
|
static <T> Generator<T> |
PrimitiveGenerators.fixedValues(Iterable<T> values) |
Create a fixed value generator return
values.
|
static <T> Generator<T> |
PrimitiveGenerators.fixedValues(T value) |
Create a generator for fixed value generator.
|
static <T> Generator<T> |
PrimitiveGenerators.fixedValues(T... values) |
Create a fixed value generator return
values array.
|
static Generator<int[]> |
CombinedGenerators.intArrays() |
Create a generator of integer arrays.
|
static Generator<int[]> |
CombinedGenerators.intArrays(Generator<Integer> size) |
Create a generator of integer arrays.
|
static Generator<int[]> |
CombinedGenerators.intArrays(Generator<Integer> content,
Generator<Integer> size) |
Create a generator of integer arrays.
|
static Generator<int[]> |
Generators.intArrays() |
Create a generator of integer arrays.
|
static Generator<int[]> |
Generators.intArrays(Generator<Integer> size) |
Create a generator of integer arrays.
|
static Generator<int[]> |
Generators.intArrays(Generator<Integer> content,
Generator<Integer> size) |
Create a generator of integer arrays.
|
static Generator<Integer> |
Generators.integers() |
|
static Generator<Integer> |
Generators.integers(int low) |
Create a new integer generator which creates integers that are at equal
or greater than low.
|
static Generator<Integer> |
Generators.integers(int lo,
int hi) |
Create a new integer generator which creates integers ranging from lo to
hi.
|
static Generator<Integer> |
Generators.integers(int lo,
int hi,
Distribution distribution) |
Create a new integer generator which creates integers ranging from lo to
hi based on the given Distribution.
|
static Generator<Integer> |
PrimitiveGenerators.integers() |
|
static Generator<Integer> |
PrimitiveGenerators.integers(int low) |
Create a new integer generator which creates integers that are at equal
or greater than low.
|
static Generator<Integer> |
PrimitiveGenerators.integers(int lo,
int hi) |
Create a new integer generator which creates integers ranging from lo to
hi.
|
static Generator<Integer> |
PrimitiveGenerators.integers(int lo,
int hi,
Distribution distribution) |
Create a new integer generator which creates integers ranging from lo to
hi based on the given Distribution.
|
static <T> Generator<Iterator<T>> |
CombinedGenerators.iterators(Generator<? extends T> content) |
Create a generator of iterators.
|
static <T> Generator<Iterator<T>> |
CombinedGenerators.iterators(Generator<? extends T> content,
Generator<Integer> size) |
Create a generator of iterators.
|
static <T> Generator<Iterator<T>> |
Generators.iterators(Generator<? extends T> content) |
Create a generator of iterators.
|
static <T> Generator<Iterator<T>> |
Generators.iterators(Generator<? extends T> content,
Generator<Integer> size) |
Create a generator of iterators.
|
static Generator<Character> |
Generators.latin1SupplementCharacters() |
Create a new character generator which generates latin-1 supplement
characters.
|
static Generator<Character> |
PrimitiveGenerators.latin1SupplementCharacters() |
Create a new character generator which generates latin-1 supplement
characters.
|
static <T> Generator<List<T>> |
CombinedGenerators.lists(Generator<? extends T> content) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
CombinedGenerators.lists(Generator<? extends T> content,
int low) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
CombinedGenerators.lists(Generator<? extends T> content,
int low,
int high) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
CombinedGenerators.lists(Generator<? extends T> content,
Generator<Integer> size) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
Generators.lists(Generator<? extends T> content) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
Generators.lists(Generator<? extends T> content,
int low) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
Generators.lists(Generator<? extends T> content,
int low,
int high) |
Create a generator of lists with values from the content generator.
|
static <T> Generator<List<T>> |
Generators.lists(Generator<? extends T> content,
Generator<Integer> size) |
Create a generator of lists with values from the content generator.
|
static Generator<Long> |
Generators.longs() |
|
static Generator<Long> |
Generators.longs(long lo,
long hi) |
Create a new long generator which creates longs ranging from lo to hi.
|
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 given Distribution.
|
static Generator<Long> |
PrimitiveGenerators.longs() |
|
static Generator<Long> |
PrimitiveGenerators.longs(long lo,
long hi) |
Create a new long generator which creates longs ranging from lo to hi.
|
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 given Distribution.
|
static <K,V> Generator<Map<K,V>> |
CombinedGenerators.maps(Generator<K> keys,
Generator<V> values) |
Create a generator of maps.
|
static <K,V> Generator<Map<K,V>> |
CombinedGenerators.maps(Generator<K> keys,
Generator<V> values,
Generator<Integer> size) |
Create a generator of maps.
|
static <K,V> Generator<Map<K,V>> |
CombinedGenerators.maps(Map<K,V> supermap) |
Create a generator of maps from a given map.
|
static <K,V> Generator<Map<K,V>> |
CombinedGenerators.maps(Map<K,V> supermap,
Generator<Integer> sizes) |
Create a generator of maps from a given map.
|
static <K,V> Generator<Map<K,V>> |
Generators.maps(Generator<K> keys,
Generator<V> values) |
Create a generator of maps.
|
static <K,V> Generator<Map<K,V>> |
Generators.maps(Generator<K> keys,
Generator<V> values,
Generator<Integer> size) |
Create a generator of maps.
|
static <K,V> Generator<Map<K,V>> |
Generators.maps(Map<K,V> supermap) |
Create a generator of maps from a given map.
|
static <K,V> Generator<Map<K,V>> |
Generators.maps(Map<K,V> supermap,
Generator<Integer> sizes) |
Create a generator of maps from a given map.
|
static <T> Generator<T[]> |
CombinedGenerators.nonEmptyArrays(Generator<? extends T> content,
Class<T> type) |
Create a generator of arrays that are not empty.
|
static <T> Generator<T[]> |
Generators.nonEmptyArrays(Generator<? extends T> content,
Class<T> type) |
Create a generator of arrays that are not empty.
|
static <T> Generator<Iterator<T>> |
CombinedGenerators.nonEmptyIterators(Generator<T> content) |
Create a generator of iterators.
|
static <T> Generator<Iterator<T>> |
Generators.nonEmptyIterators(Generator<T> content) |
Create a generator of iterators.
|
static <T> Generator<List<T>> |
CombinedGenerators.nonEmptyLists(Generator<? extends T> content) |
Create a generator of non-empty lists with values from the content
generator.
|
static <T> Generator<List<T>> |
Generators.nonEmptyLists(Generator<? extends T> content) |
Create a generator of non-empty lists with values from the content
generator.
|
static <T> Generator<Set<T>> |
CombinedGenerators.nonEmptySets(Generator<? extends T> content) |
Create a generator of sets that are not empty.
|
static <T> Generator<Set<T>> |
Generators.nonEmptySets(Generator<? extends T> content) |
Create a generator of sets that are not empty.
|
static <T> Generator<T> |
Generators.nulls() |
Create a generator for null values.
|
static <T> Generator<T> |
PrimitiveGenerators.nulls() |
Create a generator for null values.
|
static <T> Generator<T> |
CombinedGenerators.nullsAnd(Generator<T> generator) |
Create a generator as a combination of a null value generator and
generator of type T.
|
static <T> Generator<T> |
CombinedGenerators.nullsAnd(Generator<T> generator,
int weight) |
Create a generator as a combination of a null value generator and
generator of type T.
|
static <T> Generator<T> |
CombinedGenerators.nullsAnd(T... values) |
Create a generator return
the given values.
|
static <T> Generator<T> |
Generators.nullsAnd(Generator<T> generator) |
Create a generator as a combination of a null value generator and
generator of type T.
|
static <T> Generator<T> |
Generators.nullsAnd(Generator<T> generator,
int weight) |
Create a generator as a combination of a null value generator and
generator of type T.
|
static <T> Generator<T> |
Generators.nullsAnd(T... values) |
Create a generator returning a combination of a null values and
the given values.
|
static Generator<Object> |
Generators.objects() |
|
static Generator<Object> |
PrimitiveGenerators.objects() |
|
static <A,B> Generator<Pair<A,B>> |
CombinedGenerators.pairs(Generator<A> first,
Generator<B> second) |
Create a generator of pairs of type A for the left value and type B for
the right value.
|
static <A,B> Generator<Pair<A,B>> |
Generators.pairs(Generator<A> first,
Generator<B> second) |
Create a generator of pairs of type A for the left value and type B for
the right value.
|
static Generator<Integer> |
Generators.positiveIntegers() |
Create a new integer generator which creates integers ranging from 1 to
Integer.MAX_VALUE.
|
static Generator<Integer> |
Generators.positiveIntegers(int hi) |
Create a new integer generator which creates integers ranging from 1 to
max (which must be at least 1).
|
static Generator<Integer> |
PrimitiveGenerators.positiveIntegers() |
Create a new integer generator which creates integers ranging from 1 to
Integer.MAX_VALUE.
|
static Generator<Integer> |
PrimitiveGenerators.positiveIntegers(int hi) |
Create a new integer generator which creates integers ranging from 1 to
max (which must be at least 1).
|
static Generator<Long> |
Generators.positiveLongs() |
Create a new long generator which creates long values ranging from 1 to
Long.MAX_VALUE.
|
static Generator<Long> |
Generators.positiveLongs(long hi) |
Create a new long generator which creates long values ranging from 1 to
hi.
|
static Generator<Long> |
PrimitiveGenerators.positiveLongs() |
Create a new long generator which creates long values ranging from 1 to
Long.MAX_VALUE.
|
static Generator<Long> |
PrimitiveGenerators.positiveLongs(long hi) |
Create a new long generator which creates long values ranging from 1 to
hi.
|
static <T> Generator<Set<T>> |
CombinedGenerators.sets(Generator<? extends T> content) |
Create a generator of sets with values from the content generator.
|
static <T> Generator<Set<T>> |
CombinedGenerators.sets(Generator<? extends T> content,
int low,
int high) |
Create a generator of sets with values from the content generator.
|
static <T> Generator<Set<T>> |
CombinedGenerators.sets(Generator<? extends T> content,
Generator<Integer> size) |
Create a generator of sets with values from the content generator.
|
static <T> Generator<Set<T>> |
CombinedGenerators.sets(Iterable<T> superset) |
Create a generator of subsets from a given set.
|
static <T> Generator<Set<T>> |
CombinedGenerators.sets(Iterable<T> superset,
Generator<Integer> size) |
Create a generator of subsets from a given set.
|
static <T> Generator<Set<T>> |
CombinedGenerators.sets(T... superset) |
|
static <T> Generator<Set<T>> |
Generators.sets(Generator<? extends T> content) |
Create a generator of sets with values from the content generator.
|
static <T> Generator<Set<T>> |
Generators.sets(Generator<? extends T> content,
int low,
int high) |
Create a generator of sets with values from the content generator.
|
static <T> Generator<Set<T>> |
Generators.sets(Generator<? extends T> content,
Generator<Integer> size) |
Create a generator of sets with values from the content generator.
|
static <T> Generator<Set<T>> |
Generators.sets(Iterable<T> superset) |
Create a generator of subsets from a given set.
|
static <T> Generator<Set<T>> |
Generators.sets(Iterable<T> superset,
Generator<Integer> size) |
Create a generator of subsets from a given set.
|
static <T> Generator<Set<T>> |
Generators.sets(T... superset) |
|
static <T extends Comparable<T>> Generator<List<T>> |
CombinedGenerators.sortedLists(Generator<T> content) |
Create a generator of sorted lists with values from the content
generator.
|
static <T extends Comparable<T>> Generator<List<T>> |
CombinedGenerators.sortedLists(Generator<T> content,
int low,
int high) |
Create a generator of sorted lists with values from the content
generator.
|
static <T extends Comparable<T>> Generator<List<T>> |
CombinedGenerators.sortedLists(Generator<T> content,
Generator<Integer> size) |
Create a generator of sorted lists with values from the content
generator.
|
static <T extends Comparable<T>> Generator<List<T>> |
Generators.sortedLists(Generator<T> content) |
Create a generator of sorted lists with values from the content
generator.
|
static <T extends Comparable<T>> Generator<List<T>> |
Generators.sortedLists(Generator<T> content,
int low,
int high) |
Create a generator of sorted lists with values from the content
generator.
|
static <T extends Comparable<T>> Generator<List<T>> |
Generators.sortedLists(Generator<T> content,
Generator<Integer> size) |
Create a generator of sorted lists with values from the content
generator.
|
static <T extends Comparable<T>> Generator<Pair<T,T>> |
CombinedGenerators.sortedPairs(Generator<T> content) |
Create a generator of pairs where first value <= second value.
|
static <T extends Comparable<T>> Generator<Pair<T,T>> |
Generators.sortedPairs(Generator<T> content) |
Create a generator of pairs where first value <= second value.
|
static <T extends Comparable<T>> Generator<Triple<T,T,T>> |
CombinedGenerators.sortedTriple(Generator<T> content) |
Create a generator of triples where first value <= second value <= third value.
|
static <T extends Comparable<T>> Generator<Triple<T,T,T>> |
Generators.sortedTriple(Generator<T> content) |
Create a generator of triples where first value <= second value <= third value.
|
static <T extends Comparable<T>> Generator<List<T>> |
CombinedGenerators.strictlyOrdered(Generator<T> input) |
A generator for a lists.
|
static <T extends Comparable<T>> Generator<List<T>> |
CombinedGenerators.strictlyOrdered(Generator<T> input,
int low,
int high) |
A generator for a lists.
|
static <T> Generator<List<T>> |
CombinedGenerators.strictlyOrdered(Generator<T> input,
Comparator<T> comparator) |
A generator for a lists.
|
static <T> Generator<List<T>> |
CombinedGenerators.strictlyOrdered(Generator<T> input,
Comparator<T> comparator,
Generator<Integer> size) |
A generator for a lists.
|
static <T extends Comparable<T>> Generator<List<T>> |
Generators.strictlyOrdered(Generator<T> input) |
A generator for a lists.
|
static <T extends Comparable<T>> Generator<List<T>> |
Generators.strictlyOrdered(Generator<T> input,
int low,
int high) |
A generator for a lists.
|
static <T> Generator<List<T>> |
Generators.strictlyOrdered(Generator<T> input,
Comparator<T> comparator) |
A generator for a lists.
|
static <T> Generator<List<T>> |
Generators.strictlyOrdered(Generator<T> input,
Comparator<T> comparator,
Generator<Integer> size) |
A generator for a lists.
|
static Generator<String> |
Generators.substrings(String base) |
Create a new string generator for substrings of a base string.
|
static Generator<String> |
Generators.substrings(String base,
int size) |
Create a new string generator for substrings of a base string.
|
static Generator<String> |
Generators.substrings(String base,
int minSize,
int maxSize) |
Create a new string generator for substrings of a base string.
|
static Generator<String> |
PrimitiveGenerators.substrings(String base) |
Create a new string generator for substrings of a base string.
|
static Generator<String> |
PrimitiveGenerators.substrings(String base,
int size) |
Create a new string generator for substrings of a base string.
|
static Generator<String> |
PrimitiveGenerators.substrings(String base,
int minSize,
int maxSize) |
Create a new string generator for substrings of a base string.
|
static <A,B,C> Generator<Triple<A,B,C>> |
CombinedGenerators.triples(Generator<A> first,
Generator<B> second,
Generator<C> third) |
Create a generator of triples of the types A, B and C for first, second
and third value.
|
static <A,B,C> Generator<Triple<A,B,C>> |
Generators.triples(Generator<A> first,
Generator<B> second,
Generator<C> third) |
Create a generator of triples of the types A, B and C for first, second
and third value.
|
static <T> Generator<List<T>> |
CombinedGenerators.vectors(Generator<T> content,
int size) |
Create a generator which will create vectors (here lists) of type T.
|
static <T> Generator<List<T>> |
Generators.vectors(Generator<T> content,
int size) |
Create a generator which will create vectors (here lists) of type T.
|