Uses of Class
org.apache.commons.lang3.RandomUtils
-
Packages that use RandomUtils Package Description org.apache.commons.lang3 Provides highly reusable utility methods, chiefly concerned with adding value to thejava.langclasses. -
-
Uses of RandomUtils in org.apache.commons.lang3
Fields in org.apache.commons.lang3 declared as RandomUtils Modifier and Type Field Description private static RandomUtilsRandomUtils. INSECUREprivate static RandomUtilsRandomUtils. SECUREprivate static RandomUtilsRandomUtils. SECURE_STRONGFields in org.apache.commons.lang3 with type parameters of type RandomUtils Modifier and Type Field Description private java.util.function.Supplier<RandomUtils>RandomStringUtils. randomprivate static java.util.function.Supplier<RandomUtils>RandomStringUtils. SECURE_SUPPLIERMethods in org.apache.commons.lang3 that return RandomUtils Modifier and Type Method Description static RandomUtilsRandomUtils. insecure()Gets the singleton instance based onThreadLocalRandom.current(); which is not cryptographically secure; usesecure()to use an algorithms/providers specified in thesecurerandom.strongAlgorithmsSecurityproperty.private RandomUtilsRandomStringUtils. randomUtils()Gets the RandomUtils.static RandomUtilsRandomUtils. secure()Gets the singleton instance based onSecureRandom()which uses an algorithms/providers specified in thesecurerandom.strongAlgorithmsSecurityproperty.static RandomUtilsRandomUtils. secureStrong()Gets the singleton instance based onSecureRandom.getInstanceStrong()which uses an algorithms/providers specified in thesecurerandom.strongAlgorithmsSecurityproperty.Constructor parameters in org.apache.commons.lang3 with type arguments of type RandomUtils Constructor Description RandomStringUtils(java.util.function.Supplier<RandomUtils> random)
-