public static enum RandomModule.RandType extends java.lang.Enum<RandomModule.RandType>
Enum Constant and Description |
---|
JAVA
Use the standard Java random number generator.
|
MERSENNE_TWISTER
Use the mersenne twister random number generator.
|
Modifier and Type | Method and Description |
---|---|
static RandomModule.RandType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RandomModule.RandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RandomModule.RandType JAVA
RandomJava
public static final RandomModule.RandType MERSENNE_TWISTER
RandomMersenneTwister
public static RandomModule.RandType[] values()
for (RandomModule.RandType c : RandomModule.RandType.values()) System.out.println(c);
public static RandomModule.RandType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null