Uses of Class
org.apache.commons.lang3.RandomUtils
Packages that use RandomUtils
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of RandomUtils in org.apache.commons.lang3
Fields in org.apache.commons.lang3 declared as RandomUtilsModifier and TypeFieldDescriptionprivate static RandomUtils
RandomUtils.INSECURE
private static RandomUtils
RandomUtils.SECURE
private static RandomUtils
RandomUtils.SECURE_STRONG
Fields in org.apache.commons.lang3 with type parameters of type RandomUtilsModifier and TypeFieldDescriptionprivate final Supplier
<RandomUtils> RandomStringUtils.random
private static final Supplier
<RandomUtils> RandomStringUtils.SECURE_SUPPLIER
Methods in org.apache.commons.lang3 that return RandomUtilsModifier and TypeMethodDescriptionstatic RandomUtils
RandomUtils.insecure()
Gets the singleton instance based onThreadLocalRandom.current()
; which is not cryptographically secure; usesecure()
to use an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.private RandomUtils
RandomStringUtils.randomUtils()
Gets the RandomUtils.static RandomUtils
RandomUtils.secure()
Gets the singleton instance based onSecureRandom()
which uses an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.static RandomUtils
RandomUtils.secureStrong()
Gets the singleton instance based onSecureRandom.getInstanceStrong()
which uses an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.Constructor parameters in org.apache.commons.lang3 with type arguments of type RandomUtils