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