net.java.quickcheck.generator
Class CombinedGeneratorSamples
java.lang.Object
net.java.quickcheck.generator.CombinedGeneratorSamples
public class CombinedGeneratorSamples
- extends Object
Method Summary |
static
|
anyArray(Generator<? extends T> content,
Class<T> type)
See documentation of CombinedGenerators.arrays(net.java.quickcheck.Generator extends T>, java.lang.Class) . |
static
|
anyArray(Generator<? extends T> content,
Generator<Integer> size,
Class<T> type)
See documentation of CombinedGenerators.arrays(net.java.quickcheck.Generator extends T>, java.lang.Class) . |
static byte[] |
anyByteArray()
See documentation of CombinedGenerators.byteArrays() . |
static byte[] |
anyByteArray(Generator<Byte> content,
Generator<Integer> size)
See documentation of CombinedGenerators.byteArrays() . |
static byte[] |
anyByteArray(Generator<Integer> size)
See documentation of CombinedGenerators.byteArrays() . |
static
|
anyEnsureValue(Collection<T> ensuredValues)
See documentation of CombinedGenerators.ensureValues(java.util.Collection) . |
static
|
anyEnsureValue(Collection<T> ensuredValues,
Generator<T> otherValues)
See documentation of CombinedGenerators.ensureValues(java.util.Collection) . |
static
|
anyEnsureValue(T... content)
See documentation of CombinedGenerators.ensureValues(java.util.Collection) . |
static
|
anyExcludeValue(Collection<T> values,
Collection<T> excluded)
See documentation of CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T) . |
static
|
anyExcludeValue(Collection<T> values,
T... excluded)
See documentation of CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T) . |
static
|
anyExcludeValue(Generator<T> generator,
Collection<T> excluded)
See documentation of CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T) . |
static
|
anyExcludeValue(Generator<T> generator,
T... excluded)
See documentation of CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T) . |
static
|
anyExcludeValue(Generator<T> generator,
T excluded)
See documentation of CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T) . |
static
|
anyFrequency(Generator<T> generator,
int weight)
See documentation of CombinedGenerators.frequency(net.java.quickcheck.Generator, int) . |
static int[] |
anyIntArray()
See documentation of CombinedGenerators.intArrays() . |
static int[] |
anyIntArray(Generator<Integer> size)
See documentation of CombinedGenerators.intArrays() . |
static int[] |
anyIntArray(Generator<Integer> content,
Generator<Integer> size)
See documentation of CombinedGenerators.intArrays() . |
static
|
anyIterator(Generator<? extends T> content)
See documentation of CombinedGenerators.iterators(net.java.quickcheck.Generator extends T>) . |
static
|
anyIterator(Generator<? extends T> content,
Generator<Integer> size)
See documentation of CombinedGenerators.iterators(net.java.quickcheck.Generator extends T>) . |
static
|
anyList(Generator<? extends T> content)
See documentation of CombinedGenerators.lists(net.java.quickcheck.Generator extends T>) . |
static
|
anyList(Generator<? extends T> content,
Generator<Integer> size)
See documentation of CombinedGenerators.lists(net.java.quickcheck.Generator extends T>) . |
static
|
anyList(Generator<? extends T> content,
int low)
See documentation of CombinedGenerators.lists(net.java.quickcheck.Generator extends T>) . |
static
|
anyList(Generator<? extends T> content,
int low,
int high)
See documentation of CombinedGenerators.lists(net.java.quickcheck.Generator extends T>) . |
static
|
anyMap(Generator<K> keys,
Generator<V> values)
See documentation of CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator) . |
static
|
anyMap(Generator<K> keys,
Generator<V> values,
Generator<Integer> size)
See documentation of CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator) . |
static
|
anyMap(Map<K,V> supermap)
See documentation of CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator) . |
static
|
anyMap(Map<K,V> supermap,
Generator<Integer> sizes)
See documentation of CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator) . |
static
|
anyNonEmptyArray(Generator<? extends T> content,
Class<T> type)
See documentation of CombinedGenerators.nonEmptyArrays(net.java.quickcheck.Generator extends T>, java.lang.Class) . |
static
|
anyNonEmptyIterator(Generator<T> content)
See documentation of CombinedGenerators.nonEmptyIterators(net.java.quickcheck.Generator) . |
static
|
anyNonEmptyList(Generator<? extends T> content)
See documentation of CombinedGenerators.nonEmptyLists(net.java.quickcheck.Generator extends T>) . |
static
|
anyNonEmptySet(Generator<? extends T> content)
See documentation of CombinedGenerators.nonEmptySets(net.java.quickcheck.Generator extends T>) . |
static
|
anyNullsAnd(Generator<T> generator)
See documentation of CombinedGenerators.nullsAnd(net.java.quickcheck.Generator) . |
static
|
anyNullsAnd(Generator<T> generator,
int weight)
See documentation of CombinedGenerators.nullsAnd(net.java.quickcheck.Generator) . |
static
|
anyOneOf(Generator<T> generator)
See documentation of CombinedGenerators.oneOf(net.java.quickcheck.Generator) . |
static
|
anyPair(Generator<A> first,
Generator<B> second)
See documentation of CombinedGenerators.pairs(net.java.quickcheck.Generator, net.java.quickcheck.Generator) . |
static
|
anySet(Generator<? extends T> content)
See documentation of CombinedGenerators.sets(net.java.quickcheck.Generator extends T>) . |
static
|
anySet(Generator<? extends T> content,
Generator<Integer> size)
See documentation of CombinedGenerators.sets(net.java.quickcheck.Generator extends T>) . |
static
|
anySet(Generator<? extends T> content,
int low,
int high)
See documentation of CombinedGenerators.sets(net.java.quickcheck.Generator extends T>) . |
static
|
anySet(Set<T> superset)
See documentation of CombinedGenerators.sets(net.java.quickcheck.Generator extends T>) . |
static
|
anySet(Set<T> superset,
Generator<Integer> size)
See documentation of CombinedGenerators.sets(net.java.quickcheck.Generator extends T>) . |
static
|
anySortedList(Generator<T> content)
See documentation of CombinedGenerators.sortedLists(net.java.quickcheck.Generator) . |
static
|
anySortedList(Generator<T> content,
Generator<Integer> size)
See documentation of CombinedGenerators.sortedLists(net.java.quickcheck.Generator) . |
static
|
anySortedList(Generator<T> content,
int low,
int high)
See documentation of CombinedGenerators.sortedLists(net.java.quickcheck.Generator) . |
static
|
anyTriple(Generator<A> first,
Generator<B> second,
Generator<C> third)
See documentation of CombinedGenerators.triples(net.java.quickcheck.Generator, net.java.quickcheck.Generator, net.java.quickcheck.Generator) . |
static
|
anyUniqueValue(Generator<T> generator)
See documentation of CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int) . |
static
|
anyUniqueValue(Generator<T> generator,
Comparator<? super T> comparator)
See documentation of CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int) . |
static
|
anyUniqueValue(Generator<T> generator,
Comparator<? super T> comparator,
int tries)
See documentation of CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int) . |
static
|
anyUniqueValue(Generator<T> generator,
int tries)
See documentation of CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int) . |
static
|
anyVector(Generator<T> content,
int size)
See documentation of CombinedGenerators.vectors(net.java.quickcheck.Generator, int) . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CombinedGeneratorSamples
public CombinedGeneratorSamples()
anyNonEmptyIterator
public static <T> Iterator<T> anyNonEmptyIterator(Generator<T> content)
- See documentation of
CombinedGenerators.nonEmptyIterators(net.java.quickcheck.Generator)
.
anyEnsureValue
public static <T> T anyEnsureValue(Collection<T> ensuredValues)
- See documentation of
CombinedGenerators.ensureValues(java.util.Collection)
.
anyEnsureValue
public static <T> T anyEnsureValue(T... content)
- See documentation of
CombinedGenerators.ensureValues(java.util.Collection)
.
anyEnsureValue
public static <T> T anyEnsureValue(Collection<T> ensuredValues,
Generator<T> otherValues)
- See documentation of
CombinedGenerators.ensureValues(java.util.Collection)
.
anySet
public static <T> Set<T> anySet(Generator<? extends T> content)
- See documentation of
CombinedGenerators.sets(net.java.quickcheck.Generator extends T>)
.
anySet
public static <T> Set<T> anySet(Generator<? extends T> content,
Generator<Integer> size)
- See documentation of
CombinedGenerators.sets(net.java.quickcheck.Generator extends T>)
.
anySet
public static <T> Set<T> anySet(Generator<? extends T> content,
int low,
int high)
- See documentation of
CombinedGenerators.sets(net.java.quickcheck.Generator extends T>)
.
anySet
public static <T> Set<T> anySet(Set<T> superset)
- See documentation of
CombinedGenerators.sets(net.java.quickcheck.Generator extends T>)
.
anySet
public static <T> Set<T> anySet(Set<T> superset,
Generator<Integer> size)
- See documentation of
CombinedGenerators.sets(net.java.quickcheck.Generator extends T>)
.
anyIntArray
public static int[] anyIntArray()
- See documentation of
CombinedGenerators.intArrays()
.
anyIntArray
public static int[] anyIntArray(Generator<Integer> size)
- See documentation of
CombinedGenerators.intArrays()
.
anyIntArray
public static int[] anyIntArray(Generator<Integer> content,
Generator<Integer> size)
- See documentation of
CombinedGenerators.intArrays()
.
anyNonEmptyArray
public static <T> T[] anyNonEmptyArray(Generator<? extends T> content,
Class<T> type)
- See documentation of
CombinedGenerators.nonEmptyArrays(net.java.quickcheck.Generator extends T>, java.lang.Class)
.
anyPair
public static <A,B> Pair<A,B> anyPair(Generator<A> first,
Generator<B> second)
- See documentation of
CombinedGenerators.pairs(net.java.quickcheck.Generator, net.java.quickcheck.Generator)
.
anyByteArray
public static byte[] anyByteArray()
- See documentation of
CombinedGenerators.byteArrays()
.
anyByteArray
public static byte[] anyByteArray(Generator<Integer> size)
- See documentation of
CombinedGenerators.byteArrays()
.
anyByteArray
public static byte[] anyByteArray(Generator<Byte> content,
Generator<Integer> size)
- See documentation of
CombinedGenerators.byteArrays()
.
anyVector
public static <T> List<T> anyVector(Generator<T> content,
int size)
- See documentation of
CombinedGenerators.vectors(net.java.quickcheck.Generator, int)
.
anyTriple
public static <A,B,C> Triple<A,B,C> anyTriple(Generator<A> first,
Generator<B> second,
Generator<C> third)
- See documentation of
CombinedGenerators.triples(net.java.quickcheck.Generator, net.java.quickcheck.Generator, net.java.quickcheck.Generator)
.
anyNullsAnd
public static <T> T anyNullsAnd(Generator<T> generator)
- See documentation of
CombinedGenerators.nullsAnd(net.java.quickcheck.Generator)
.
anyNullsAnd
public static <T> T anyNullsAnd(Generator<T> generator,
int weight)
- See documentation of
CombinedGenerators.nullsAnd(net.java.quickcheck.Generator)
.
anyOneOf
public static <T> T anyOneOf(Generator<T> generator)
- See documentation of
CombinedGenerators.oneOf(net.java.quickcheck.Generator)
.
anyExcludeValue
public static <T> T anyExcludeValue(Generator<T> generator,
T excluded)
- See documentation of
CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T)
.
anyExcludeValue
public static <T> T anyExcludeValue(Generator<T> generator,
T... excluded)
- See documentation of
CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T)
.
anyExcludeValue
public static <T> T anyExcludeValue(Collection<T> values,
T... excluded)
- See documentation of
CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T)
.
anyExcludeValue
public static <T> T anyExcludeValue(Collection<T> values,
Collection<T> excluded)
- See documentation of
CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T)
.
anyExcludeValue
public static <T> T anyExcludeValue(Generator<T> generator,
Collection<T> excluded)
- See documentation of
CombinedGenerators.excludeValues(net.java.quickcheck.Generator, T)
.
anyUniqueValue
public static <T> T anyUniqueValue(Generator<T> generator,
int tries)
- See documentation of
CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int)
.
anyUniqueValue
public static <T> T anyUniqueValue(Generator<T> generator,
Comparator<? super T> comparator,
int tries)
- See documentation of
CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int)
.
anyUniqueValue
public static <T> T anyUniqueValue(Generator<T> generator,
Comparator<? super T> comparator)
- See documentation of
CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int)
.
anyUniqueValue
public static <T> T anyUniqueValue(Generator<T> generator)
- See documentation of
CombinedGenerators.uniqueValues(net.java.quickcheck.Generator, int)
.
anyFrequency
public static <T> T anyFrequency(Generator<T> generator,
int weight)
- See documentation of
CombinedGenerators.frequency(net.java.quickcheck.Generator, int)
.
anyNonEmptyList
public static <T> List<T> anyNonEmptyList(Generator<? extends T> content)
- See documentation of
CombinedGenerators.nonEmptyLists(net.java.quickcheck.Generator extends T>)
.
anyNonEmptySet
public static <T> Set<T> anyNonEmptySet(Generator<? extends T> content)
- See documentation of
CombinedGenerators.nonEmptySets(net.java.quickcheck.Generator extends T>)
.
anyList
public static <T> List<T> anyList(Generator<? extends T> content,
int low)
- See documentation of
CombinedGenerators.lists(net.java.quickcheck.Generator extends T>)
.
anyList
public static <T> List<T> anyList(Generator<? extends T> content,
int low,
int high)
- See documentation of
CombinedGenerators.lists(net.java.quickcheck.Generator extends T>)
.
anyList
public static <T> List<T> anyList(Generator<? extends T> content,
Generator<Integer> size)
- See documentation of
CombinedGenerators.lists(net.java.quickcheck.Generator extends T>)
.
anyList
public static <T> List<T> anyList(Generator<? extends T> content)
- See documentation of
CombinedGenerators.lists(net.java.quickcheck.Generator extends T>)
.
anyIterator
public static <T> Iterator<T> anyIterator(Generator<? extends T> content,
Generator<Integer> size)
- See documentation of
CombinedGenerators.iterators(net.java.quickcheck.Generator extends T>)
.
anyIterator
public static <T> Iterator<T> anyIterator(Generator<? extends T> content)
- See documentation of
CombinedGenerators.iterators(net.java.quickcheck.Generator extends T>)
.
anyMap
public static <K,V> Map<K,V> anyMap(Generator<K> keys,
Generator<V> values)
- See documentation of
CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator)
.
anyMap
public static <K,V> Map<K,V> anyMap(Generator<K> keys,
Generator<V> values,
Generator<Integer> size)
- See documentation of
CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator)
.
anyMap
public static <K,V> Map<K,V> anyMap(Map<K,V> supermap)
- See documentation of
CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator)
.
anyMap
public static <K,V> Map<K,V> anyMap(Map<K,V> supermap,
Generator<Integer> sizes)
- See documentation of
CombinedGenerators.maps(net.java.quickcheck.Generator, net.java.quickcheck.Generator)
.
anySortedList
public static <T extends Comparable<T>> List<T> anySortedList(Generator<T> content,
Generator<Integer> size)
- See documentation of
CombinedGenerators.sortedLists(net.java.quickcheck.Generator)
.
anySortedList
public static <T extends Comparable<T>> List<T> anySortedList(Generator<T> content,
int low,
int high)
- See documentation of
CombinedGenerators.sortedLists(net.java.quickcheck.Generator)
.
anySortedList
public static <T extends Comparable<T>> List<T> anySortedList(Generator<T> content)
- See documentation of
CombinedGenerators.sortedLists(net.java.quickcheck.Generator)
.
anyArray
public static <T> T[] anyArray(Generator<? extends T> content,
Class<T> type)
- See documentation of
CombinedGenerators.arrays(net.java.quickcheck.Generator extends T>, java.lang.Class)
.
anyArray
public static <T> T[] anyArray(Generator<? extends T> content,
Generator<Integer> size,
Class<T> type)
- See documentation of
CombinedGenerators.arrays(net.java.quickcheck.Generator extends T>, java.lang.Class)
.
Copyright © 2011. All Rights Reserved.