Package org.apache.poi.ss.formula
Interface ThreeDEval
- 
- All Superinterfaces:
 SheetRange,TwoDEval,ValueEval
- All Known Subinterfaces:
 AreaEval
- All Known Implementing Classes:
 AreaEvalBase,CacheAreaEval
public interface ThreeDEval extends TwoDEval, SheetRange
Optional Extension to the likes ofAreaEvalandAreaEvalBase, which allows for looking up 3D (sheet+row+column) evaluations 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueEvalgetValue(int sheetIndex, int rowIndex, int columnIndex)- 
Methods inherited from interface org.apache.poi.ss.formula.SheetRange
getFirstSheetIndex, getLastSheetIndex 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getValue
ValueEval getValue(int sheetIndex, int rowIndex, int columnIndex)
- Parameters:
 sheetIndex- sheet index (zero based)rowIndex- relative row index (zero based)columnIndex- relative column index (zero based)- Returns:
 - element at the specified row and column position
 
 
 - 
 
 -