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