A B C D E F G H I L M N O P Q R S T U V

N

NATIVE - Static variable in enum org.randomness.PRNG
Represents native pseudorandom number generator nativelly suppotred by Java Platform - java.util.Random (also here as LCG).
newBuffer(int) - Method in class org.randomness.Randomness
Returns new instance of ByteBuffer with specified capacity.
next() - Method in class org.randomness.Pseudorandomness
TODO PROVISIONAL API, WORK IN PROGRESS: Reinitializes the PRNG to the beginning of its next substream (optional operation).
nextBoolean() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 1-bit boolean value checking most significant bit.
nextBoolean() - Method in class org.randomness.Randomness
Return's next generated random 1-bit boolean value (like coin flip).
nextByte() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 8-bit byte value.
nextByte() - Method in class org.randomness.Randomness
Return's next generated random 8-bit byte value.
nextChar() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom unsigned 16-bit char value.
nextChar() - Method in class org.randomness.Randomness
Return's next generated random unsigned 16-bit char value UNICODE encoded.
nextCharASCII() - Method in class org.randomness.Randomness
Return's next randomly generated 8-bit char value US-ASCII encoded.
nextDouble() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 64-bit double value between 0.0 (inclusive) and 1.0 (exclusive).
nextDouble(double, double) - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 64-bit floating point double value chosen pseudorandomly with (approximately) uniform distribution from open interval [from,to] (excluding from and to).
nextDouble(double, double) - Method in class org.randomness.Pseudorandomness
Returns a uniformly distributed random floating point number in the open interval (from,to) (excluding from and to).
nextDouble() - Method in class org.randomness.Randomness
Return's next generated random 64-bit floating-point double value between 0.0 (inclusive) and 1.0 (exclusive).
nextFloat() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 32-bit float value between 0.0 (inclusive) and 1.0 (exclusive).
nextFloat(float, float) - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 32-bit floating-point float value chosen pseudorandomly with (approximately) uniform distribution from open interval [from,to] (excluding from and to).
nextFloat(float, float) - Method in class org.randomness.Pseudorandomness
Returns a uniformly distributed random floating point number in the open interval (from,to) (excluding from and to).
nextFloat() - Method in class org.randomness.Randomness
Return's next generated random 32-bit floating-point float () value between 0.0 (inclusive) and 1.0 (exclusive).
nextGaussian() - Method in class org.randomness.Pseudorandomness
Returns the next pseudorandom, Gaussian ("normally") distributed double value with mean 0.0 and standard deviation 1.0 from this random number generator's sequence.
nextGaussian(double, double) - Method in class org.randomness.Pseudorandomness
Returns the next pseudorandom, Gaussian ("normally") distributed double value with the given mean, mu and the given standard deviation, sigma.
nextHashCodeEntropy() - Static method in enum org.randomness.TRNG
Returns the 32-bit unpredictable value obtained from hash code value containing several bits of entropy.
nextHexString(int) - Method in class org.randomness.Cryptorandomness
TODO PROVISIONAL API, WORK IN PROGRESS: Returns a random string of hex characters from a secure random sequence.
nextHexString(int) - Method in class org.randomness.Randomness
Generates a random string of hex characters of specified length.
nextInt() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 32-bit int value.
nextInt(int, int) - Method in enum org.randomness.PRNG
Returns a uniformly distributed random number in the closed interval [from,to] (including from and to).
nextInt(int) - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 32-bit int value chosen pseudorandomly with (approximately) uniform distribution from range 0 (inclusive) to n (exclusive).
nextInt(int, int) - Method in class org.randomness.Pseudorandomness
Returns a uniformly distributed random number in the closed interval [from,to] (including from and to).
nextInt() - Method in class org.randomness.Randomness
Return's next generated random 32-bit int value.
nextInt(int) - Method in class org.randomness.Randomness
Return's next generated random int value drawn uniformly from 0 to n-1.
nextLong() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 64-bit long value.
nextLong(long) - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 64-bit long value chosen pseudorandomly with (approximately) uniform distribution from range 0 (inclusive) to n (exclusive).
nextLong(long, long) - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 64-bit long value chosen pseudorandomly with (approximately) uniform distribution from closed interval [from,to] (including from and to).
nextLong(long, long) - Method in class org.randomness.Pseudorandomness
Returns a uniformly distributed random number in the closed interval [from,to] (including from and to).
nextLong() - Method in class org.randomness.Randomness
Return's next generated random 64-bit long value.
nextLong(long) - Method in class org.randomness.Randomness
Return's next generated random long value drawn uniformly from 0 to n-1.
nextLong1() - Method in class org.randomness.Pseudorandomness
 
nextProbability(float) - Method in enum org.randomness.PRNG
Return's next generated boolean with a specified probability of returning true, else returning false.
nextProbability(float) - Method in class org.randomness.Randomness
Return's next generated boolean with a specified probability of returning true, else returning false.
nextShort() - Method in enum org.randomness.PRNG
Return's next generated pseudorandom 16-bit short value.
nextShort() - Method in class org.randomness.Randomness
Return's next generated random 16-bit short () value (typically from nextInt value returned two most significant bytes).
nextTimeEntropy() - Static method in enum org.randomness.TRNG
PROVISIONAL API, WORK IN PROGRESS: Retunrn's 64-bit unpredictable value created from system time sources such us System.currentTimeMillis() and System.nanoTime().
nonce() - Method in class org.randomness.Cryptorandomness
Nonce - is a time-varying value that has at most a negligible chance of repeating, e.g., a random value that is generated anew for each use, a timestamp, a sequence number, or some combination of these.

A B C D E F G H I L M N O P Q R S T U V