public class XSSFFormulaEvaluator extends Object implements FormulaEvaluator
clearAllCachedResultValues()
if any workbook cells are changed between
calls to evaluate~ methods on this class.Constructor and Description |
---|
XSSFFormulaEvaluator(XSSFWorkbook workbook) |
XSSFFormulaEvaluator(XSSFWorkbook workbook,
IStabilityClassifier stabilityClassifier)
Deprecated.
(Sep 2009) (reduce overloading) use
#create(XSSFWorkbook, org.zkoss.poi.ss.formula.IStabilityClassifier, org.zkoss.poi.hssf.record.formula.udf.UDFFinder) |
Modifier and Type | Method and Description |
---|---|
void |
clearAllCachedResultValues()
Should be called whenever there are major changes (e.g.
|
static XSSFFormulaEvaluator |
create(XSSFWorkbook workbook,
IStabilityClassifier stabilityClassifier,
UDFFinder udfFinder) |
CellValue |
evaluate(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.
|
void |
evaluateAll()
Loops over all cells in all sheets of the supplied
workbook.
|
static void |
evaluateAllFormulaCells(XSSFWorkbook wb)
Loops over all cells in all sheets of the supplied
workbook.
|
CellValue |
evaluateFormula(int sheetIndex,
String formula,
Object ref) |
int |
evaluateFormulaCell(Cell cell)
If cell contains formula, it evaluates the formula,
and saves the result of the formula.
|
ValueEval |
evaluateFormulaValueEval(int sheetIndex,
String formula,
boolean ignoreDereference,
Object ref) |
XSSFCell |
evaluateInCell(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.
|
CellValue |
getCellValueByValueEval(ValueEval eval) |
WorkbookEvaluator |
getWorkbookEvaluator() |
void |
notifyDeleteCell(Cell cell)
Should be called to tell the cell value cache that the specified cell has just become a
formula cell, or the formula text has changed
|
void |
notifySetFormula(Cell cell)
Should be called to tell the cell value cache that the specified (value or formula) cell
has changed.
|
void |
notifyUpdateCell(Cell cell)
Should be called to tell the cell value cache that the specified (value or formula) cell
has changed.
|
void |
setDebugEvaluationOutputForNextEval(boolean value)
Perform detailed output of formula evaluation for next evaluation only?
Is for developer use only (also developers using POI for their XLS files).
|
public XSSFFormulaEvaluator(XSSFWorkbook workbook)
@Deprecated public XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier)
#create(XSSFWorkbook, org.zkoss.poi.ss.formula.IStabilityClassifier, org.zkoss.poi.hssf.record.formula.udf.UDFFinder)
stabilityClassifier
- used to optimise caching performance. Pass null
for the (conservative) assumption that any cell may have its definition changed after
evaluation begins.public static XSSFFormulaEvaluator create(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder)
stabilityClassifier
- used to optimise caching performance. Pass null
for the (conservative) assumption that any cell may have its definition changed after
evaluation begins.udfFinder
- pass null
for default (AnalysisToolPak only)public void clearAllCachedResultValues()
clearAllCachedResultValues
in interface FormulaEvaluator
public void notifySetFormula(Cell cell)
FormulaEvaluator
notifySetFormula
in interface FormulaEvaluator
public void notifyDeleteCell(Cell cell)
FormulaEvaluator
notifyDeleteCell
in interface FormulaEvaluator
public void notifyUpdateCell(Cell cell)
FormulaEvaluator
notifyUpdateCell
in interface FormulaEvaluator
public CellValue evaluate(Cell cell)
evaluate
in interface FormulaEvaluator
cell
- public int evaluateFormulaCell(Cell cell)
int evaluatedCellType = evaluator.evaluateFormulaCell(cell);Be aware that your cell will hold both the formula, and the result. If you want the cell replaced with the result of the formula, use
evaluate(org.zkoss.poi.ss.usermodel.Cell)
}evaluateFormulaCell
in interface FormulaEvaluator
cell
- The cell to evaluatepublic XSSFCell evaluateInCell(Cell cell)
int evaluatedCellType = evaluator.evaluateInCell(cell).getCellType();Be aware that your cell value will be changed to hold the result of the formula. If you simply want the formula value computed for you, use
evaluateFormulaCell(org.zkoss.poi.ss.usermodel.Cell)
}evaluateInCell
in interface FormulaEvaluator
cell
- public static void evaluateAllFormulaCells(XSSFWorkbook wb)
public void evaluateAll()
evaluateAll
in interface FormulaEvaluator
public WorkbookEvaluator getWorkbookEvaluator()
getWorkbookEvaluator
in interface FormulaEvaluator
public CellValue getCellValueByValueEval(ValueEval eval)
getCellValueByValueEval
in interface FormulaEvaluator
public void setDebugEvaluationOutputForNextEval(boolean value)
setDebugEvaluationOutputForNextEval
in interface FormulaEvaluator
value
- whether to perform detailed outputpublic CellValue evaluateFormula(int sheetIndex, String formula, Object ref)
evaluateFormula
in interface FormulaEvaluator
public ValueEval evaluateFormulaValueEval(int sheetIndex, String formula, boolean ignoreDereference, Object ref)
evaluateFormulaValueEval
in interface FormulaEvaluator
Copyright © 2020. All rights reserved.