- RandomStringGenerator - Class in net.moznion.random.string
-
Generator of random string.
- RandomStringGenerator() - Constructor for class net.moznion.random.string.RandomStringGenerator
-
Instantiate generator with a default number of upper limit for regex quantifiers (for example
*
, +
and etc; default value is 10) and a default instance of Random.
- RandomStringGenerator(int) - Constructor for class net.moznion.random.string.RandomStringGenerator
-
Instantiate generator with a number of upper limit for regex quantifiers (for example *
, +
and etc) and a default instance of Random.
- RandomStringGenerator(Random) - Constructor for class net.moznion.random.string.RandomStringGenerator
-
Instantiate generator with a default number of upper limit for regex quantifiers (for example
*
, +
and etc; default value is 10) and an instance of Random.
- RandomStringGenerator(Random, int) - Constructor for class net.moznion.random.string.RandomStringGenerator
-
Instantiate generator with a number of upper limit for regex quantifiers (for example *
, +
and etc) and an instance of Random.