Uses of Package
java.util.random
Packages that usejava.util.random
Package
Description
Provides the classes and interfaces for the security framework.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
This package contains classes and interfaces that support a generic API for random number generation.
- Classes injava.util.random used byjava.securityClassDescriptionThe
RandomGeneratorinterface is designed to provide a common protocol for objects that generate random or (more typically) pseudorandom sequences of numbers (or Boolean values). - Classes injava.util.random used byjava.utilClassDescriptionThe
RandomGeneratorinterface is designed to provide a common protocol for objects that generate random or (more typically) pseudorandom sequences of numbers (or Boolean values).This interface is designed to provide a common protocol for objects that generate sequences of pseudorandom values and can besplit into two objects (the original one and a new one) each of which obey that same protocol (and therefore can be recursively split indefinitely).TheRandomGenerator.StreamableGeneratorinterface augments theRandomGeneratorinterface to provide methods that return streams ofRandomGeneratorobjects. - Classes injava.util.random used byjava.util.concurrentClassDescriptionThe
RandomGeneratorinterface is designed to provide a common protocol for objects that generate random or (more typically) pseudorandom sequences of numbers (or Boolean values). - Classes injava.util.random used byjava.util.randomClassDescriptionThe
RandomGeneratorinterface is designed to provide a common protocol for objects that generate random or (more typically) pseudorandom sequences of numbers (or Boolean values).This interface is designed to provide a common protocol for objects that generate sequences of pseudorandom values and can easilyjump forward, by an arbitrary amount, to a distant point in the state cycle.This interface is designed to provide a common protocol for objects that generate pseudorandom values and can easilyjump forward, by a moderate amount (ex. 264) to a distant point in the state cycle.This interface is designed to provide a common protocol for objects that generate sequences of pseudorandom values and can easily not only jump but alsoleap forward, by a large amount (ex. 2128), to a very distant point in the state cycle.This interface is designed to provide a common protocol for objects that generate sequences of pseudorandom values and can besplit into two objects (the original one and a new one) each of which obey that same protocol (and therefore can be recursively split indefinitely).TheRandomGenerator.StreamableGeneratorinterface augments theRandomGeneratorinterface to provide methods that return streams ofRandomGeneratorobjects.This is a factory class for generating multiple random number generators of a specificalgorithm.