Uses of Class
csheets.core.formula.FunctionParameter

Packages that use FunctionParameter
csheets.core.formula Provides classes for representing formulas. 
csheets.core.formula.compiler Provides classes for compiling formulas from strings. 
csheets.core.formula.lang Provides the operators, functions and references supported by the formula language. 
 

Uses of FunctionParameter in csheets.core.formula
 

Methods in csheets.core.formula that return FunctionParameter
 FunctionParameter[] Function.getParameters()
          Returns the parameters of the function.
 

Uses of FunctionParameter in csheets.core.formula.compiler
 

Methods in csheets.core.formula.compiler that return FunctionParameter
 FunctionParameter IllegalFunctionCallException.getParameter()
          Returns the parameter that was not matched.
 

Constructors in csheets.core.formula.compiler with parameters of type FunctionParameter
IllegalFunctionCallException(Function function, FunctionParameter parameter, Expression argument)
          Creates a new function call exception.
 

Uses of FunctionParameter in csheets.core.formula.lang
 

Fields in csheets.core.formula.lang declared as FunctionParameter
static FunctionParameter[] True.parameters
          The empty parameter list
static FunctionParameter[] Sum.parameters
          The only (but repeatable) parameter: a numeric term
static FunctionParameter[] Or.parameters
          The only (but repeatable) parameter: a boolean expression
static FunctionParameter[] Not.parameters
          The only parameter: a boolean expression
static FunctionParameter[] If.parameters
          The function's three parameters: condition, result and alternative
static FunctionParameter[] False.parameters
          The empty parameter list
static FunctionParameter[] Factorial.parameters
          The only parameter: a numeric term
static FunctionParameter[] Do.parameters
          Parameters: function, function range, condition and condition range
static FunctionParameter[] Count.parameters
          The function's parameters
static FunctionParameter[] Average.parameters
          The only (but repeatable) parameter: a numeric term
static FunctionParameter[] And.parameters
          The only (but repeatable) parameter: a boolean expression
 

Methods in csheets.core.formula.lang that return FunctionParameter
 FunctionParameter[] True.getParameters()
           
 FunctionParameter[] Sum.getParameters()
           
 FunctionParameter[] Or.getParameters()
           
 FunctionParameter[] NumericFunction.getParameters()
           
 FunctionParameter[] Not.getParameters()
           
 FunctionParameter[] If.getParameters()
           
 FunctionParameter[] False.getParameters()
           
 FunctionParameter[] Factorial.getParameters()
           
 FunctionParameter[] Do.getParameters()
           
 FunctionParameter[] Count.getParameters()
           
 FunctionParameter[] Average.getParameters()
           
 FunctionParameter[] And.getParameters()