Package org.apache.commons.math.random
Class RandomAdaptor
- java.lang.Object
-
- java.util.Random
-
- org.apache.commons.math.random.RandomAdaptor
-
- All Implemented Interfaces:
java.io.Serializable,RandomGenerator
public class RandomAdaptor extends java.util.Random implements RandomGenerator
Extension ofjava.util.Randomwrapping aRandomGenerator.- Since:
- 1.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RandomAdaptor(RandomGenerator randomGenerator)Construct a RandomAdaptor wrapping the supplied RandomGenerator.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.RandomcreateAdaptor(RandomGenerator randomGenerator)Factory method to create aRandomusing the suppliedRandomGenerator.booleannextBoolean()Returns the next pseudorandom, uniformly distributedbooleanvalue from this random number generator's sequence.voidnextBytes(byte[] bytes)Generates random bytes and places them into a user-supplied byte array.doublenextDouble()Returns the next pseudorandom, uniformly distributeddoublevalue between0.0and1.0from this random number generator's sequence.floatnextFloat()Returns the next pseudorandom, uniformly distributedfloatvalue between0.0and1.0from this random number generator's sequence.doublenextGaussian()Returns the next pseudorandom, Gaussian ("normally") distributeddoublevalue with mean0.0and standard deviation1.0from this random number generator's sequence.intnextInt()Returns the next pseudorandom, uniformly distributedintvalue from this random number generator's sequence.intnextInt(int n)Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.longnextLong()Returns the next pseudorandom, uniformly distributedlongvalue from this random number generator's sequence.voidsetSeed(int seed)Sets the seed of the underlying random number generator using anintseed.voidsetSeed(int[] seed)Sets the seed of the underlying random number generator using anintarray seed.voidsetSeed(long seed)Sets the seed of the underlying random number generator using alongseed.
-
-
-
Constructor Detail
-
RandomAdaptor
public RandomAdaptor(RandomGenerator randomGenerator)
Construct a RandomAdaptor wrapping the supplied RandomGenerator.- Parameters:
randomGenerator- the wrapped generator
-
-
Method Detail
-
createAdaptor
public static java.util.Random createAdaptor(RandomGenerator randomGenerator)
Factory method to create aRandomusing the suppliedRandomGenerator.- Parameters:
randomGenerator- wrapped RandomGenerator instance- Returns:
- a Random instance wrapping the RandomGenerator
-
nextBoolean
public boolean nextBoolean()
Returns the next pseudorandom, uniformly distributedbooleanvalue from this random number generator's sequence.- Specified by:
nextBooleanin interfaceRandomGenerator- Overrides:
nextBooleanin classjava.util.Random- Returns:
- the next pseudorandom, uniformly distributed
booleanvalue from this random number generator's sequence
-
nextBytes
public void nextBytes(byte[] bytes)
Generates random bytes and places them into a user-supplied byte array. The number of random bytes produced is equal to the length of the byte array.- Specified by:
nextBytesin interfaceRandomGenerator- Overrides:
nextBytesin classjava.util.Random- Parameters:
bytes- the non-null byte array in which to put the random bytes
-
nextDouble
public double nextDouble()
Returns the next pseudorandom, uniformly distributeddoublevalue between0.0and1.0from this random number generator's sequence.- Specified by:
nextDoublein interfaceRandomGenerator- Overrides:
nextDoublein classjava.util.Random- Returns:
- the next pseudorandom, uniformly distributed
doublevalue between0.0and1.0from this random number generator's sequence
-
nextFloat
public float nextFloat()
Returns the next pseudorandom, uniformly distributedfloatvalue between0.0and1.0from this random number generator's sequence.- Specified by:
nextFloatin interfaceRandomGenerator- Overrides:
nextFloatin classjava.util.Random- Returns:
- the next pseudorandom, uniformly distributed
floatvalue between0.0and1.0from this random number generator's sequence
-
nextGaussian
public double nextGaussian()
Returns the next pseudorandom, Gaussian ("normally") distributeddoublevalue with mean0.0and standard deviation1.0from this random number generator's sequence.- Specified by:
nextGaussianin interfaceRandomGenerator- Overrides:
nextGaussianin classjava.util.Random- Returns:
- the next pseudorandom, Gaussian ("normally") distributed
doublevalue with mean0.0and standard deviation1.0from this random number generator's sequence
-
nextInt
public int nextInt()
Returns the next pseudorandom, uniformly distributedintvalue from this random number generator's sequence. All 232 possible int values should be produced with (approximately) equal probability.- Specified by:
nextIntin interfaceRandomGenerator- Overrides:
nextIntin classjava.util.Random- Returns:
- the next pseudorandom, uniformly distributed
intvalue from this random number generator's sequence
-
nextInt
public int nextInt(int n)
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator's sequence.- Specified by:
nextIntin interfaceRandomGenerator- Overrides:
nextIntin classjava.util.Random- Parameters:
n- the bound on the random number to be returned. Must be positive.- Returns:
- a pseudorandom, uniformly distributed int value between 0 (inclusive) and n (exclusive).
- Throws:
java.lang.IllegalArgumentException- if n is not positive.
-
nextLong
public long nextLong()
Returns the next pseudorandom, uniformly distributedlongvalue from this random number generator's sequence. All 264 possible long values should be produced with (approximately) equal probability.- Specified by:
nextLongin interfaceRandomGenerator- Overrides:
nextLongin classjava.util.Random- Returns:
- the next pseudorandom, uniformly distributed
longvalue from this random number generator's sequence
-
setSeed
public void setSeed(int seed)
Sets the seed of the underlying random number generator using anintseed.Sequences of values generated starting with the same seeds should be identical.
- Specified by:
setSeedin interfaceRandomGenerator- Parameters:
seed- the seed value
-
setSeed
public void setSeed(int[] seed)
Sets the seed of the underlying random number generator using anintarray seed.Sequences of values generated starting with the same seeds should be identical.
- Specified by:
setSeedin interfaceRandomGenerator- Parameters:
seed- the seed value
-
setSeed
public void setSeed(long seed)
Sets the seed of the underlying random number generator using alongseed.Sequences of values generated starting with the same seeds should be identical.
- Specified by:
setSeedin interfaceRandomGenerator- Overrides:
setSeedin classjava.util.Random- Parameters:
seed- the seed value
-
-