|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AnalystFileFormat>
org.encog.app.analyst.AnalystFileFormat
public enum AnalystFileFormat
CSV file formats used by the Encog Analyst.
Enum Constant Summary | |
---|---|
DECCOMMA_SEMI
Decimal comma and ; . |
|
DECCOMMA_SPACE
Decimal comma and space. |
|
DECPNT_COMMA
Normal English file, decimal point and comma. |
|
DECPNT_SEMI
Decimal point and ; delimiter. |
|
DECPNT_SPACE
Normal English file, decimal point, but space delimiter. |
Method Summary | |
---|---|
static AnalystFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AnalystFileFormat[] |
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 AnalystFileFormat DECPNT_COMMA
public static final AnalystFileFormat DECPNT_SPACE
public static final AnalystFileFormat DECPNT_SEMI
public static final AnalystFileFormat DECCOMMA_SPACE
public static final AnalystFileFormat DECCOMMA_SEMI
Method Detail |
---|
public static AnalystFileFormat[] values()
for (AnalystFileFormat c : AnalystFileFormat.values()) System.out.println(c);
public static AnalystFileFormat 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |