Package org.apache.poi.ss.formula
Interface EvaluationSheet
- 
@Internal public interface EvaluationSheet
Abstracts a sheet for the purpose of formula evaluation.
For POI internal use only 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclearAllCachedResultValues()Propagated fromEvaluationWorkbook.clearAllCachedResultValues()to clear locally cached data.EvaluationCellgetCell(int rowIndex, int columnIndex)intgetLastRowNum() 
 - 
 
- 
- 
Method Detail
- 
getCell
EvaluationCell getCell(int rowIndex, int columnIndex)
- Returns:
 nullif there is no cell at the specified coordinates
 
- 
clearAllCachedResultValues
void clearAllCachedResultValues()
Propagated fromEvaluationWorkbook.clearAllCachedResultValues()to clear locally cached data.- Since:
 - POI 3.15 beta 3
 - See Also:
 WorkbookEvaluator.clearAllCachedResultValues(),EvaluationWorkbook.clearAllCachedResultValues()
 
- 
getLastRowNum
int getLastRowNum()
- Returns:
 - last row index referenced on this sheet, for evaluation optimization
 - Since:
 - POI 4.0.0
 
 
 - 
 
 -