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