Uses of Interface
csheets.core.formula.Function

Packages that use Function
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 Function in csheets.core.formula
 

Methods in csheets.core.formula that return Function
 Function FunctionCall.getFunction()
          Returns the function that is called.
 

Constructors in csheets.core.formula with parameters of type Function
FunctionCall(Function function, Expression... args)
          Creates a new function call.
 

Uses of Function in csheets.core.formula.compiler
 

Methods in csheets.core.formula.compiler that return Function
 Function IllegalFunctionCallException.getFunction()
          Returns the function that was called.
 

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

Uses of Function in csheets.core.formula.lang
 

Classes in csheets.core.formula.lang that implement Function
 class And
          A function that returns true if and only if all of its arguments are true.
 class Average
          A function that returns the numeric average of its arguments.
 class Count
          A function that counts those of its arguments that yield numeric values.
 class Do
          A function that emulates a looping statement, where each cell in a given range that satisfy a given condition, or each corresponding cell in another range, are passed to a function.
 class Factorial
          A function that returns the factorial of its argument.
 class False
          A function that returns the boolean value false.
 class If
          A function that emulates the if-then-else statement.
 class Not
          A function that returns the boolean opposite of its argument.
 class NumericFunction
          A numeric function that invokes a method object.
 class Or
          A function that returns true if any of its arguments are true.
 class Sum
          A function that returns the numeric sum of its arguments.
 class True
          A function that returns the boolean value true.
 

Methods in csheets.core.formula.lang that return Function
 Function Language.getFunction(String identifier)
          Returns the function with the given identifier.
 Function[] Language.getFunctions()
          Returns the functions that are supported by the syntax.