org.encog.app.generate.program
public enum EncogArgType extends Enum<EncogArgType>
Enum Constant and Description |
---|
Float
A floating point type.
|
Int
An int type.
|
ObjectType
An object type.
|
String
A string type.
|
Modifier and Type | Method and Description |
---|---|
static EncogArgType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncogArgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncogArgType String
public static final EncogArgType Float
public static final EncogArgType Int
public static final EncogArgType ObjectType
public static EncogArgType[] values()
for (EncogArgType c : EncogArgType.values()) System.out.println(c);
public static EncogArgType 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.