Class Expression.Function

  • Enclosing class:
    Expression

    public abstract class Expression.Function
    extends Object
    Abstract definition of a supported expression function. A function is defined by a name, the number of parameters and the actual processing implementation.
    • Constructor Detail

      • Function

        public Function​(String name,
                        int numParams)
        Creates a new function with given name and parameter count.
        Parameters:
        name - The name of the function.
        numParams - The number of parameters for this function.