Uses of Interface
org.apache.poi.ss.usermodel.FormulaEvaluator
-
Packages that use FormulaEvaluator Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas.org.apache.poi.ss.usermodel -
-
Uses of FormulaEvaluator in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement FormulaEvaluator Modifier and Type Class Description class
HSSFFormulaEvaluator
Evaluates formula cells.Method parameters in org.apache.poi.hssf.usermodel with type arguments of type FormulaEvaluator Modifier and Type Method Description void
HSSFFormulaEvaluator. setupReferencedWorkbooks(Map<String,FormulaEvaluator> evaluators)
-
Uses of FormulaEvaluator in org.apache.poi.ss.formula
Classes in org.apache.poi.ss.formula that implement FormulaEvaluator Modifier and Type Class Description class
BaseFormulaEvaluator
Common functionality across file formats for evaluating formula cells.Methods in org.apache.poi.ss.formula with parameters of type FormulaEvaluator Modifier and Type Method Description protected static void
BaseFormulaEvaluator. evaluateAllFormulaCells(Workbook wb, FormulaEvaluator evaluator)
Method parameters in org.apache.poi.ss.formula with type arguments of type FormulaEvaluator Modifier and Type Method Description static void
CollaboratingWorkbooksEnvironment. setupFormulaEvaluator(Map<String,FormulaEvaluator> evaluators)
void
BaseFormulaEvaluator. setupReferencedWorkbooks(Map<String,FormulaEvaluator> evaluators)
-
Uses of FormulaEvaluator in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return FormulaEvaluator Modifier and Type Method Description FormulaEvaluator
CreationHelper. createFormulaEvaluator()
Creates FormulaEvaluator - an object that evaluates formula cells.Methods in org.apache.poi.ss.usermodel with parameters of type FormulaEvaluator Modifier and Type Method Description String
DataFormatter. formatCellValue(Cell cell, FormulaEvaluator evaluator)
Returns the formatted value of a cell as aString
regardless of the cell type.String
DataFormatter. formatCellValue(Cell cell, FormulaEvaluator evaluator, ConditionalFormattingEvaluator cfEvaluator)
Returns the formatted value of a cell as aString
regardless of the cell type.Method parameters in org.apache.poi.ss.usermodel with type arguments of type FormulaEvaluator Modifier and Type Method Description void
FormulaEvaluator. setupReferencedWorkbooks(Map<String,FormulaEvaluator> workbooks)
Sets up the Formula Evaluator to be able to reference and resolve links to other workbooks, eg [Test.xls]Sheet1!A1.
-