Uses of Interface
org.apache.poi.hssf.record.formula.functions.FreeRefFunction

Packages that use FreeRefFunction
org.apache.poi.hssf.record.formula.atp   
org.apache.poi.hssf.record.formula.functions   
org.apache.poi.hssf.record.formula.udf   
org.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas. 
 

Uses of FreeRefFunction in org.apache.poi.hssf.record.formula.atp
 

Methods in org.apache.poi.hssf.record.formula.atp that return FreeRefFunction
 FreeRefFunction AnalysisToolPak.findFunction(java.lang.String name)
           
 

Uses of FreeRefFunction in org.apache.poi.hssf.record.formula.functions
 

Classes in org.apache.poi.hssf.record.formula.functions that implement FreeRefFunction
 class Indirect
          Implementation for Excel function INDIRECT

INDIRECT() returns the cell or area reference denoted by the text argument.

Syntax:
INDIRECT(ref_text,isA1Style)

ref_text a string representation of the desired reference as it would normally be written in a cell formula.
isA1Style (default TRUE) specifies whether the ref_text should be interpreted as A1-style or R1C1-style.

 

Fields in org.apache.poi.hssf.record.formula.functions declared as FreeRefFunction
static FreeRefFunction Indirect.instance
           
 

Uses of FreeRefFunction in org.apache.poi.hssf.record.formula.udf
 

Methods in org.apache.poi.hssf.record.formula.udf that return FreeRefFunction
 FreeRefFunction UDFFinder.findFunction(java.lang.String name)
          Returns executor by specified name.
 FreeRefFunction DefaultUDFFinder.findFunction(java.lang.String name)
           
 FreeRefFunction AggregatingUDFFinder.findFunction(java.lang.String name)
          Returns executor by specified name.
 

Constructors in org.apache.poi.hssf.record.formula.udf with parameters of type FreeRefFunction
DefaultUDFFinder(java.lang.String[] functionNames, FreeRefFunction[] functionImpls)
           
 

Uses of FreeRefFunction in org.apache.poi.ss.formula
 

Fields in org.apache.poi.ss.formula declared as FreeRefFunction
static FreeRefFunction OperationEvaluationContext.UDF
           
 

Methods in org.apache.poi.ss.formula that return FreeRefFunction
 FreeRefFunction WorkbookEvaluator.findUserDefinedFunction(java.lang.String functionName)
           
 FreeRefFunction OperationEvaluationContext.findUserDefinedFunction(java.lang.String functionName)