public interface FormulaEvaluator
clearAllCachedResultValues()
if any workbook cells are changed between
calls to evaluate~ methods on this class.Modifier and Type | Method and Description |
---|---|
void |
clearAllCachedResultValues()
Should be called whenever there are changes to input cells in the evaluated workbook.
|
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 associated workbook.
|
CellValue |
evaluateFormula(int sheetIndex,
java.lang.String formula,
java.lang.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,
java.lang.String formula,
boolean ignoreDereference,
java.lang.Object ref) |
Cell |
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?
|
void clearAllCachedResultValues()
void notifySetFormula(Cell cell)
void notifyDeleteCell(Cell cell)
void notifyUpdateCell(Cell cell)
void evaluateAll()
CellValue evaluate(Cell cell)
cell
- 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
evaluateInCell(Cell)
cell
- The cell to evaluateCell 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(Cell)
cell
- void setDebugEvaluationOutputForNextEval(boolean value)
value
- whether to perform detailed outputWorkbookEvaluator getWorkbookEvaluator()
CellValue evaluateFormula(int sheetIndex, java.lang.String formula, java.lang.Object ref)
ValueEval evaluateFormulaValueEval(int sheetIndex, java.lang.String formula, boolean ignoreDereference, java.lang.Object ref)
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.