public static enum RNG.Generator extends Enum<RNG.Generator>
Enum Constant and Description |
---|
MERSENNE |
Well19937c |
Well44497b |
Modifier and Type | Method and Description |
---|---|
static RNG.Generator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RNG.Generator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RNG.Generator MERSENNE
public static final RNG.Generator Well19937c
public static final RNG.Generator Well44497b
public static RNG.Generator[] values()
for (RNG.Generator c : RNG.Generator.values()) System.out.println(c);
public static RNG.Generator 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 © 2015 University of Glasgow. All rights reserved.