java.lang.Object
java.lang.Enum<RandomGenerator.RandomGeneratorProperty>
java.util.random.RandomGenerator.RandomGeneratorProperty
- All Implemented Interfaces:
-
Serializable
,Comparable<RandomGenerator.RandomGeneratorProperty>
,Constable
- Enclosing interface:
- RandomGenerator
public static enum RandomGenerator.RandomGeneratorProperty extends Enum<RandomGenerator.RandomGeneratorProperty>
Properties of RandomGenerators.
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe equidistribution of the algorithm.Category of algorithm.Is the algorithm assisted by hardware (fast true random.)Is the algorithm based on entropy (true random.)Name of algorithm (same as class.)Algorithm period.Number of bits used to maintain state of seed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NAME
Name of algorithm (same as class.) -
GROUP
Category of algorithm. -
PERIOD
Algorithm period. -
STATE_BITS
Number of bits used to maintain state of seed. -
EQUIDISTRIBUTION
The equidistribution of the algorithm. -
IS_STOCHASTIC
Is the algorithm based on entropy (true random.) -
IS_HARDWARE
Is the algorithm assisted by hardware (fast true random.)
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
-
name
- the name of the enum constant to be returned. - Returns:
- the enum constant with the specified name
- Throws:
-
IllegalArgumentException
- if this enum type has no constant with the specified name -
NullPointerException
- if the argument is null
-