Uses of Enum Class
com.irurueta.statistics.RandomizerType
-
Uses of RandomizerType in com.irurueta.statistics
Fields in com.irurueta.statistics declared as RandomizerTypeModifier and TypeFieldDescriptionstatic final RandomizerType
Randomizer.DEFAULT_RANDOMIZER_TYPE
Indicates default randomizer type if non is provided.Methods in com.irurueta.statistics that return RandomizerTypeModifier and TypeMethodDescriptionGaussianRandomizer.getType()
Returns the randomizer type of this instance.abstract RandomizerType
Randomizer.getType()
Returns the randomizer type of this instance.UniformRandomizer.getType()
Returns the randomizer type of this instance.static RandomizerType
Returns the enum constant of this class with the specified name.static RandomizerType[]
RandomizerType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.irurueta.statistics with parameters of type RandomizerTypeModifier and TypeMethodDescriptionstatic Randomizer
Randomizer.create
(RandomizerType type) Creates a new Randomizer instance using provided randomizer type and the default secure mode specified by USE_SECURE_RANDOM_BY_DEFAULT.static Randomizer
Randomizer.create
(RandomizerType type, boolean useSecureRandom) Creates a new Randomizer instance using provided randomizer type and provided secure mode.static Randomizer
Randomizer.create
(RandomizerType type, Random internalRandom) Creates a new Randomizer instance using provided randomizer type and internal randomizer.