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