|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EncogOpcodeRegistry>
org.encog.ml.prg.extension.EncogOpcodeRegistry
public enum EncogOpcodeRegistry
Holds all known EPL opcodes. Extension programs should add new opcodes here. The FunctionFactory selects a subset of opcodes from here that will be run. An opcode is identified by its name, and the number of parameters it accepts. It is okay to add an opcode multiple times, the new opcode replaces the previous.
Enum Constant Summary | |
---|---|
INSTANCE
|
Method Summary | |
---|---|
void |
add(ProgramExtensionTemplate ext)
Add an opcode. |
static String |
createKey(String functionName,
int argCount)
Construct a lookup key for the hash map. |
Collection<ProgramExtensionTemplate> |
findAllOpcodes()
|
ProgramExtensionTemplate |
findOpcode(String name,
int args)
Find the specified opcode. |
static EncogOpcodeRegistry |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EncogOpcodeRegistry[] |
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 EncogOpcodeRegistry INSTANCE
Method Detail |
---|
public static EncogOpcodeRegistry[] values()
for (EncogOpcodeRegistry c : EncogOpcodeRegistry.values()) System.out.println(c);
public static EncogOpcodeRegistry 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 nullpublic static String createKey(String functionName, int argCount)
functionName
- The name of the opcode.argCount
- The number of parameters this opcode accepts.
public void add(ProgramExtensionTemplate ext)
ext
- The opcode to add.public Collection<ProgramExtensionTemplate> findAllOpcodes()
public ProgramExtensionTemplate findOpcode(String name, int args)
name
- The name of the opcode.args
- The number of arguments.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |