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