org.apache.poi.xssf.usermodel
Class XSSFFormulaEvaluator
- java.lang.Object
-
- org.apache.poi.xssf.usermodel.XSSFFormulaEvaluator
-
- All Implemented Interfaces:
- WorkbookEvaluatorProvider, FormulaEvaluator
public class XSSFFormulaEvaluator extends java.lang.Object implements FormulaEvaluator, WorkbookEvaluatorProvider
Evaluates formula cells. For performance reasons, this class keeps a cache of all previously calculated intermediate cell values. Be sure to callclearAllCachedResultValues()if any workbook cells are changed between calls to evaluate~ methods on this class.
-
-
Constructor Summary
Constructors Constructor and Description XSSFFormulaEvaluator(XSSFWorkbook workbook)XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier)Deprecated.(Sep 2009) (reduce overloading) usecreate(XSSFWorkbook, org.apache.poi.ss.formula.IStabilityClassifier, org.apache.poi.ss.formula.udf.UDFFinder)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description WorkbookEvaluator_getWorkbookEvaluator()Provide the underlying WorkbookEvaluatorvoidclearAllCachedResultValues()Should be called whenever there are major changes (e.g.static XSSFFormulaEvaluatorcreate(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder)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 supplied workbook.static voidevaluateAllFormulaCells(XSSFWorkbook wb)Loops over all cells in all sheets of the supplied workbook.intevaluateFormulaCell(Cell cell)If cell contains formula, it evaluates the formula, and saves the result of the formula.XSSFCellevaluateInCell(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.voidnotifyDeleteCell(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 changedvoidnotifySetFormula(Cell cell)Should be called to tell the cell value cache that the specified (value or formula) cell has changed.voidnotifyUpdateCell(Cell cell)Should be called to tell the cell value cache that the specified (value or formula) cell has changed.voidsetDebugEvaluationOutputForNextEval(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).voidsetIgnoreMissingWorkbooks(boolean ignore)Whether to ignore missing references to external workbooks and use cached formula results in the main workbook instead.voidsetupReferencedWorkbooks(java.util.Map<java.lang.String,FormulaEvaluator> evaluators)Sets up the Formula Evaluator to be able to reference and resolve links to other workbooks, eg [Test.xls]Sheet1!A1.
-
-
-
Constructor Detail
-
XSSFFormulaEvaluator
public XSSFFormulaEvaluator(XSSFWorkbook workbook)
-
XSSFFormulaEvaluator
@Deprecated public XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier)
Deprecated. (Sep 2009) (reduce overloading) usecreate(XSSFWorkbook, org.apache.poi.ss.formula.IStabilityClassifier, org.apache.poi.ss.formula.udf.UDFFinder)- Parameters:
stabilityClassifier- used to optimise caching performance. Passnullfor the (conservative) assumption that any cell may have its definition changed after evaluation begins.
-
-
Method Detail
-
create
public static XSSFFormulaEvaluator create(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder)
- Parameters:
stabilityClassifier- used to optimise caching performance. Passnullfor the (conservative) assumption that any cell may have its definition changed after evaluation begins.udfFinder- passnullfor default (AnalysisToolPak only)
-
clearAllCachedResultValues
public void clearAllCachedResultValues()
Should be called whenever there are major changes (e.g. moving sheets) to input cells in the evaluated workbook. Failure to call this method after changing cell values will cause incorrect behaviour of the evaluate~ methods of this class- Specified by:
clearAllCachedResultValuesin interfaceFormulaEvaluator
-
notifySetFormula
public void notifySetFormula(Cell cell)
Description copied from interface:FormulaEvaluatorShould be called to tell the cell value cache that the specified (value or formula) cell has changed. Failure to call this method after changing cell values will cause incorrect behaviour of the evaluate~ methods of this class- Specified by:
notifySetFormulain interfaceFormulaEvaluator
-
notifyDeleteCell
public void notifyDeleteCell(Cell cell)
Description copied from interface:FormulaEvaluatorShould be called to tell the cell value cache that the specified cell has just become a formula cell, or the formula text has changed- Specified by:
notifyDeleteCellin interfaceFormulaEvaluator
-
notifyUpdateCell
public void notifyUpdateCell(Cell cell)
Description copied from interface:FormulaEvaluatorShould be called to tell the cell value cache that the specified (value or formula) cell has changed. Failure to call this method after changing cell values will cause incorrect behaviour of the evaluate~ methods of this class- Specified by:
notifyUpdateCellin interfaceFormulaEvaluator
-
evaluate
public 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. This method should be preferred over evaluateInCell() when the call should not modify the contents of the original cell.- Specified by:
evaluatein interfaceFormulaEvaluator- Parameters:
cell-
-
evaluateFormulaCell
public int evaluateFormulaCell(Cell cell)
If cell contains formula, it evaluates the formula, and saves the result of the formula. The cell remains as a formula cell. Else if cell does not contain formula, this method leaves the cell unchanged. Note that the type of the formula result is returned, so you know what kind of value is also stored with the formula.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, useevaluate(org.apache.poi.ss.usermodel.Cell)}- Specified by:
evaluateFormulaCellin interfaceFormulaEvaluator- Parameters:
cell- The cell to evaluate- Returns:
- The type of the formula result (the cell's type remains as HSSFCell.CELL_TYPE_FORMULA however)
-
evaluateInCell
public 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. Else if cell does not contain formula, this method leaves the cell unchanged. Note that the same instance of HSSFCell is returned to allow chained calls like: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, useevaluateFormulaCell(org.apache.poi.ss.usermodel.Cell)}- Specified by:
evaluateInCellin interfaceFormulaEvaluator- Parameters:
cell-
-
evaluateAllFormulaCells
public static void evaluateAllFormulaCells(XSSFWorkbook wb)
Loops over all cells in all sheets of the supplied workbook. For cells that contain formulas, their formulas are evaluated, and the results are saved. These cells remain as formula cells. For cells that do not contain formulas, no changes are made. This is a helpful wrapper around looping over all cells, and calling evaluateFormulaCell on each one.
-
evaluateAll
public void evaluateAll()
Loops over all cells in all sheets of the supplied workbook. For cells that contain formulas, their formulas are evaluated, and the results are saved. These cells remain as formula cells. For cells that do not contain formulas, no changes are made. This is a helpful wrapper around looping over all cells, and calling evaluateFormulaCell on each one.- Specified by:
evaluateAllin interfaceFormulaEvaluator
-
setupReferencedWorkbooks
public void setupReferencedWorkbooks(java.util.Map<java.lang.String,FormulaEvaluator> evaluators)
Description copied from interface:FormulaEvaluatorSets up the Formula Evaluator to be able to reference and resolve links to other workbooks, eg [Test.xls]Sheet1!A1.For a workbook referenced as [Test.xls]Sheet1!A1, you should supply a map containing the key Test.xls (no square brackets), and an open FormulaEvaluator onto that Workbook.
- Specified by:
setupReferencedWorkbooksin interfaceFormulaEvaluator- Parameters:
evaluators- Map of workbook names (no square brackets) to an evaluator on that workbook
-
_getWorkbookEvaluator
public WorkbookEvaluator _getWorkbookEvaluator()
Description copied from interface:WorkbookEvaluatorProviderProvide the underlying WorkbookEvaluator- Specified by:
_getWorkbookEvaluatorin interfaceWorkbookEvaluatorProvider
-
setIgnoreMissingWorkbooks
public void setIgnoreMissingWorkbooks(boolean ignore)
Whether to ignore missing references to external workbooks and use cached formula results in the main workbook instead.In some cases external workbooks referenced by formulas in the main workbook are not available. With this method you can control how POI handles such missing references:
- by default ignoreMissingWorkbooks=false and POI throws
CollaboratingWorkbooksEnvironment.WorkbookNotFoundExceptionif an external reference cannot be resolved - if ignoreMissingWorkbooks=true then POI uses cached formula result that already exists in the main workbook
- Specified by:
setIgnoreMissingWorkbooksin interfaceFormulaEvaluator- Parameters:
ignore- whether to ignore missing references to external workbooks
- by default ignoreMissingWorkbooks=false and POI throws
-
setDebugEvaluationOutputForNextEval
public 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). Log-Level WARN is for basic info, INFO for detailed information. These quite high levels are used because you have to explicitly enable this specific logging.- Specified by:
setDebugEvaluationOutputForNextEvalin interfaceFormulaEvaluator- Parameters:
value- whether to perform detailed output
-
-
DataMelt 3.0 © DataMelt by jWork.ORG