Uses of Enum
org.apache.commons.rng.simple.RandomSource
Packages that use RandomSource
Package
Description
This package provides
factory methods
by which low-level classes implemented in module "commons-rng-core"
are instantiated.-
Uses of RandomSource in org.apache.commons.rng.simple
Subclasses with type arguments of type RandomSource in org.apache.commons.rng.simpleModifier and TypeClassDescriptionenumThis class provides the API for creating generators of random numbers.Fields in org.apache.commons.rng.simple declared as RandomSourceModifier and TypeFieldDescriptionprivate final RandomSourceJDKRandomBridge.sourceSource.private final RandomSourceThreadLocalRandomSource.ThreadLocalRng.sourceThe source.Fields in org.apache.commons.rng.simple with type parameters of type RandomSourceModifier and TypeFieldDescriptionprivate static final Map<RandomSource, ThreadLocal<UniformRandomProvider>> ThreadLocalRandomSource.SOURCESA map containing theThreadLocalinstance for eachRandomSource.Methods in org.apache.commons.rng.simple that return RandomSourceModifier and TypeMethodDescriptionstatic RandomSourceReturns the enum constant of this type with the specified name.static RandomSource[]RandomSource.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.rng.simple with parameters of type RandomSourceModifier and TypeMethodDescriptionRandomSource.create(RandomSource source) Deprecated.RandomSource.create(RandomSource source, Object seed, Object... data) Deprecated.It is preferred to use theRandomSource.create(Object, Object...)instance method.static UniformRandomProviderThreadLocalRandomSource.current(RandomSource source) Returns the current thread's copy of the givensource.Constructors in org.apache.commons.rng.simple with parameters of type RandomSourceModifierConstructorDescriptionJDKRandomBridge(RandomSource source, Object seed) Creates a new instance.(package private)ThreadLocalRng(RandomSource source) Create a new instance.
RandomSource.create()instance method.