org.encog.ml.bayesian.bif
public enum FileSection extends Enum<FileSection>
Enum Constant and Description |
---|
BIF
The BIF header.
|
DEFINITION
A definition.
|
NETWORK
The network specs.
|
VARIABLE
A variable.
|
Modifier and Type | Method and Description |
---|---|
static FileSection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSection BIF
public static final FileSection NETWORK
public static final FileSection VARIABLE
public static final FileSection DEFINITION
public static FileSection[] values()
for (FileSection c : FileSection.values()) System.out.println(c);
public static FileSection 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.