public static enum UniformRng.Method extends java.lang.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(java.lang.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(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