public static enum Task.Step extends Enum<Task.Step>
Enum Constant and Description |
---|
PREDICTION |
PREPARATION |
SAVED |
TRAINING |
VALIDATION |
Modifier and Type | Method and Description |
---|---|
static Task.Step |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Task.Step[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Task.Step PREPARATION
public static final Task.Step TRAINING
public static final Task.Step VALIDATION
public static final Task.Step PREDICTION
public static final Task.Step SAVED
public static Task.Step[] values()
for (Task.Step c : Task.Step.values()) System.out.println(c);
public static Task.Step 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 © 2018. All rights reserved.