Java org.apache.poi.ss.usermodel FormulaEvaluator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.poi.ss.usermodel FormulaEvaluator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.poi.ss.usermodel FormulaEvaluator.

The text is from its open source code.

Method

voidclearAllCachedResultValues()
Should be called whenever there are changes to input cells in the evaluated workbook.
CellValueevaluate(Cell cell)
If cell contains a formula, the formula is evaluated and returned, else the CellValue simply copies the appropriate cell value from the cell and also its cell type.
voidevaluateAll()
Loops over all cells in all sheets of the associated workbook.
CellTypeevaluateFormulaCell(Cell cell)
If cell contains formula, it evaluates the formula, and saves the result of the formula.
CellevaluateInCell(Cell cell)
If cell contains formula, it evaluates the formula, and puts the formula result back into the cell, in place of the old formula.
voidnotifySetFormula(Cell cell)
Should be called to tell the cell value cache that the specified (value or formula) cell has changed.
voidsetupReferencedWorkbooks(Map workbooks)
Sets up the Formula Evaluator to be able to reference and resolve links to other workbooks, eg [Test.xls]Sheet1!A1.