org.encog.app.generate.program
public enum NodeType extends Enum<NodeType>
Enum Constant and Description |
---|
Class
A class declaration.
|
Comment
A comment.
|
Const
A const value.
|
CreateNetwork
A network creation.
|
EmbedTraining
Embedded training.
|
ForLoop
A for loop.
|
Function
A function declaration.
|
FunctionCall
A function call.
|
InitArray
Init an array.
|
LoadTraining
Load training.
|
MainFunction
The main function.
|
StaticFunction
A static function.
|
WhileLoop
A while loop.
|
Modifier and Type | Method and Description |
---|---|
static NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType Comment
public static final NodeType MainFunction
public static final NodeType Function
public static final NodeType Class
public static final NodeType ForLoop
public static final NodeType WhileLoop
public static final NodeType Const
public static final NodeType StaticFunction
public static final NodeType FunctionCall
public static final NodeType CreateNetwork
public static final NodeType InitArray
public static final NodeType EmbedTraining
public static final NodeType LoadTraining
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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.