|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ExtendibleGenerator | |
---|---|
net.java.quickcheck | |
net.java.quickcheck.generator | |
net.java.quickcheck.generator.support |
Uses of ExtendibleGenerator in net.java.quickcheck |
---|
Subinterfaces of ExtendibleGenerator in net.java.quickcheck | |
---|---|
interface |
FrequencyGenerator<T>
Create a frequency generator. |
Methods in net.java.quickcheck that return ExtendibleGenerator | |
---|---|
ExtendibleGenerator<I,T> |
ExtendibleGenerator.add(Generator<I> newGenerator)
Add a new generator. |
Uses of ExtendibleGenerator in net.java.quickcheck.generator |
---|
Methods in net.java.quickcheck.generator that return ExtendibleGenerator | ||
---|---|---|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.letterStrings()
Create a new string generator which creates strings of characters from a-z and A-Z. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.letterStrings(int min,
int max)
Create a new string generator which creates strings with sizes ranging from loLengh to hiLength of characters from a-z and A-Z. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.nonEmptyStrings()
Create a new string generator for strings that are not empty. |
|
static
|
CombinedGenerators.oneOf(Generator<T> generator)
OneOf is a convenience method for CombinedGenerators.frequency(Generator, int) when all generator
share the same weight. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.printableStrings()
Create a new string generator which creates strings of characters generated by PrimitiveGenerators.basicLatinCharacters() and
PrimitiveGenerators.latin1SupplementCharacters() . |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings()
Create a new string generator. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(char lo,
char hi)
Create a new string generator which generates strings of characters ranging from lo to hi. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(Generator<Character> characterGenerator)
Create a new string generator which creates strings of characters generated by the given character generator. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(Generator<Integer> length,
Generator<Character> characters)
Create a new string generator which creates strings of characters generated by the given character generator with a length generated by the length generator. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(int max)
Creates a new String genearator which generates strings whose length ranges from zero to given length. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(int min,
int max)
Create a new string generator which generates strings of sizes ranging from loLength to hiLength. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(String allowedCharacters)
Create a new string generator which generates strings of characters from the given string. |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings(String allowedCharacters,
int min,
int max)
Create a new string generator which generates strings of characters from the given string with a length between min and max. |
Uses of ExtendibleGenerator in net.java.quickcheck.generator.support |
---|
Classes in net.java.quickcheck.generator.support that implement ExtendibleGenerator | |
---|---|
class |
DefaultFrequencyGenerator<T>
|
class |
StringGenerator
|
Methods in net.java.quickcheck.generator.support that return ExtendibleGenerator | |
---|---|
ExtendibleGenerator<Character,String> |
StringGenerator.add(Generator<Character> characterGenerator)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |