|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NodeType>
org.encog.app.generate.program.NodeType
public enum NodeType
The type of node.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
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 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
Method Detail |
---|
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 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 |