org.encog.app.analyst.wizard
public enum NormalizeRange extends Enum<NormalizeRange>
Enum Constant and Description |
---|
NegOne2One
Range from -1 to 1.
|
Zero2One
Range from 0 to 1.
|
Modifier and Type | Method and Description |
---|---|
static NormalizeRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NormalizeRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NormalizeRange NegOne2One
public static final NormalizeRange Zero2One
public static NormalizeRange[] values()
for (NormalizeRange c : NormalizeRange.values()) System.out.println(c);
public static NormalizeRange 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 © 2014. All Rights Reserved.