static ExtendibleGenerator<Character,String> |
Generators.letterStrings() |
Create a new string generator which creates strings of characters from
a-z and A-Z.
|
static ExtendibleGenerator<Character,String> |
Generators.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.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> |
Generators.nonEmptyStrings() |
Create a new string generator for strings that are not empty.
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.nonEmptyStrings() |
Create a new string generator for strings that are not empty.
|
static <T> ExtendibleGenerator<T,T> |
CombinedGenerators.oneOf(Generator<T> generator) |
|
static <T> ExtendibleGenerator<T,T> |
Generators.oneOf(Generator<T> generator) |
|
static ExtendibleGenerator<Character,String> |
Generators.printableStrings() |
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.printableStrings() |
|
static ExtendibleGenerator<Character,String> |
Generators.strings() |
Create a new string generator.
The characters are from the Basic Latin and Latin-1 Supplement unicode blocks.
|
static ExtendibleGenerator<Character,String> |
Generators.strings(char lo,
char hi) |
Create a new string generator which generates strings of characters
ranging from lo to hi.
|
static ExtendibleGenerator<Character,String> |
Generators.strings(int max) |
Creates a new String genearator which generates strings whose length
ranges from zero to given length.
|
static ExtendibleGenerator<Character,String> |
Generators.strings(int min,
int max) |
Create a new string generator which generates strings of sizes ranging
from loLength to hiLength.
|
static ExtendibleGenerator<Character,String> |
Generators.strings(Generator<Character> characterGenerator) |
Create a new string generator which creates strings of characters
generated by the given character generator.
|
static ExtendibleGenerator<Character,String> |
Generators.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> |
Generators.strings(String allowedCharacters) |
Create a new string generator which generates strings of characters from
the given string.
|
static ExtendibleGenerator<Character,String> |
Generators.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.
|
static ExtendibleGenerator<Character,String> |
PrimitiveGenerators.strings() |
Create a new string generator.
The characters are from the Basic Latin and Latin-1 Supplement unicode blocks.
|
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(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(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(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.
|