Uses of Class
org.formulacompiler.compiler.Operator

Packages that use Operator
org.formulacompiler.compiler Contains the public compile-time API of AFC's core functional model compiler. 
org.formulacompiler.spreadsheet Contains the public compile-time API of AFC's spreadsheet compiler, which extends the core functional model compiler. 
 

Uses of Operator in org.formulacompiler.compiler
 

Methods in org.formulacompiler.compiler that return Operator
 Operator Operator.inverse()
           
static Operator Operator.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Operator[] Operator.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Uses of Operator in org.formulacompiler.spreadsheet
 

Methods in org.formulacompiler.spreadsheet with parameters of type Operator
 SpreadsheetBuilder.ExprNode SpreadsheetBuilder.op(Operator _op, SpreadsheetBuilder.ExprNode... _args)
          Returns an expression tree node which applies an operator to the values of its argument nodes.