public static enum UniformRNG.Method extends Enum<UniformRNG.Method>
Enum Constant and Description |
---|
LECUYER
Lecuyer
|
LEHMER
Lehmer
|
MERSENNE_TWISTER
Mersenne Twister (recommended)
|
Modifier and Type | Method and Description |
---|---|
static UniformRNG.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UniformRNG.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UniformRNG.Method MERSENNE_TWISTER
public static final UniformRNG.Method LEHMER
public static final UniformRNG.Method LECUYER
public static UniformRNG.Method[] values()
for (UniformRNG.Method c : UniformRNG.Method.values()) System.out.println(c);
public static UniformRNG.Method valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.