Uses of Interface
org.alindner.tools.common.random.generator.IRandomStringGenerator
-
Packages that use IRandomStringGenerator Package Description org.alindner.tools.common.random org.alindner.tools.common.random.generator -
-
Uses of IRandomStringGenerator in org.alindner.tools.common.random
Methods in org.alindner.tools.common.random with parameters of type IRandomStringGenerator Modifier and Type Method Description static <T> org.alindner.tools.common.random.Random.RandomStream<T>Random. build(IRandomStringGenerator<T> generator)Build a stream based on a given generatorstatic <T> List<T>Random. list(int count, int length, Predicate<? super T> method, IRandomStringGenerator<T> generator)static <T> Stream<T>Random. stream(int limit, int length, Predicate<? super T> filter, IRandomStringGenerator<T> generator)generates a limited filtered stream of random strings based on an given generatorstatic <T> Stream<T>Random. streamParallel(int limit, int length, IRandomStringGenerator<T> generator)static <T> Stream<T>Random. streamParallelUnique(int count, int length, Predicate<? super T> method, IRandomStringGenerator<T> generator) -
Uses of IRandomStringGenerator in org.alindner.tools.common.random.generator
Classes in org.alindner.tools.common.random.generator that implement IRandomStringGenerator Modifier and Type Class Description classRandomNumberGeneratorclassRandomStringGeneratorclassRandomUnicodeStringGeneratorMethods in org.alindner.tools.common.random.generator that return IRandomStringGenerator Modifier and Type Method Description static IRandomStringGenerator<String>Generator. alphanumeric()Create an alphanumeric string generator.static IRandomStringGenerator<String>Generator. alphanumericSigns()Create an alphanumeric string generator.static IRandomStringGenerator<BigInteger>Generator. integerNumbers()Create an number saved asBigIntegergenerator.static IRandomStringGenerator<String>Generator. numbers()Create an alphanumeric string generator.static IRandomStringGenerator<String>Generator. unicode()Create an alphanumeric string generator.
-