|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NormalizationAction>
org.encog.util.arrayutil.NormalizationAction
public enum NormalizationAction
Normalization actions desired.
Enum Constant Summary | |
---|---|
Equilateral
Use the equilateral classification method. |
|
Ignore
Ignore this column, do not include in the output. |
|
Normalize
Normalize this column. |
|
OneOf
Use the "one-of" classification method. |
|
PassThrough
Do not normalize the column, just allow it to pass through. |
|
SingleField
Use a single-field classification method. |
Method Summary | |
---|---|
boolean |
isClassify()
|
static NormalizationAction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NormalizationAction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final NormalizationAction PassThrough
public static final NormalizationAction Normalize
public static final NormalizationAction Ignore
public static final NormalizationAction OneOf
public static final NormalizationAction Equilateral
public static final NormalizationAction SingleField
Method Detail |
---|
public static NormalizationAction[] values()
for (NormalizationAction c : NormalizationAction.values()) System.out.println(c);
public static NormalizationAction valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean isClassify()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |