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