Uses of Class
org.randomness.PRNG

Uses of PRNG in org.randomness
 

Fields in org.randomness declared as PRNG
static PRNG PRNG.MERSENNE_TWISTER
          Synonym of Mersenne Twister algorithm.
static PRNG PRNG.MERSENNE_TWISTER_64
          Synonym of 64-bit version of Mersenne Twister algorithm.
static PRNG PRNG.NATIVE
          Represents native pseudorandom number generator nativelly suppotred by Java Platform - java.util.Random (also here as LCG).
static PRNG PRNG.UTIL_RANDOM
          Synonym of Linear Congruental algorithm which java.util.Random is used.
 

Methods in org.randomness that return PRNG
 PRNG PRNG.reseed()
          Reseed internal instance of this PRNG to new initial internal state using default entropy input.
 PRNG PRNG.reseed(ByteBuffer seed)
          Reseed internal instance of this PRNG to new initial internal state using specifed seed bytes.
 PRNG PRNG.reset()
          Resets internal instance of this PRNG to its initial internal state.
static PRNG PRNG.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PRNG[] PRNG.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.randomness with parameters of type PRNG
static Pseudorandomness Pseudorandomness.current(PRNG prng)
          Creates a unique Pseudo-random Number Generator isolated to the current thread (thread-local).
static Pseudorandomness Pseudorandomness.shared(PRNG prng)
          Creates shared Pseudorandomness using specified pre-implemented PRNG algorithm.