public static enum RandomUtils.RNGType extends java.lang.Enum<RandomUtils.RNGType>
Enum Constant and Description |
---|
JavaRNG |
MersenneTwisterRNG |
PCGRNG |
XorShiftRNG |
Modifier and Type | Method and Description |
---|---|
static RandomUtils.RNGType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RandomUtils.RNGType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RandomUtils.RNGType PCGRNG
public static final RandomUtils.RNGType MersenneTwisterRNG
public static final RandomUtils.RNGType JavaRNG
public static final RandomUtils.RNGType XorShiftRNG
public static RandomUtils.RNGType[] values()
for (RandomUtils.RNGType c : RandomUtils.RNGType.values()) System.out.println(c);
public static RandomUtils.RNGType 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