Documentation of 'org.encog.ml.prg.extension.EncogOpcodeRegistry' Java class
EncogOpcodeRegistry
org.encog.ml.prg.extension

Enum EncogOpcodeRegistry

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EncogOpcodeRegistry>


    public enum EncogOpcodeRegistry
    extends java.lang.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.
    • Method Detail

      • values

        public static EncogOpcodeRegistry[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (EncogOpcodeRegistry c : EncogOpcodeRegistry.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EncogOpcodeRegistry valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • createKey

        public static java.lang.String createKey(java.lang.String functionName,
                                                 int argCount)
        Construct a lookup key for the hash map.
        Parameters:
        functionName - The name of the opcode.
        argCount - The number of parameters this opcode accepts.
        Returns:
        Return the string key.
      • add

        public void add(ProgramExtensionTemplate ext)
        Add an opcode. User programs should add opcodes here.
        Parameters:
        ext - The opcode to add.
      • findOpcode

        public ProgramExtensionTemplate findOpcode(java.lang.String name,
                                                   int args)
        Find the specified opcode.
        Parameters:
        name - The name of the opcode.
        args - The number of arguments.
        Returns:
        The opcode if found, null otherwise.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.