org.encog.app.analyst
public enum AnalystFileFormat extends Enum<AnalystFileFormat>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2014. All Rights Reserved.