Package io.keikai.range.formula
Interface TwoDEval
- All Superinterfaces:
ValueEval
- All Known Subinterfaces:
AreaEval
Two-dimensional grid of
ValueEval cells. Implemented by
AreaEval (multi-cell range) and by single-cell references
that present themselves as a 1×1 grid.
Replaces org.apache.poi.ss.formula.TwoDEval.
- Since:
- 7.0.0
-
Method Summary
-
Method Details
-
getValue
- Returns:
- cell value at the given (relative) row/column.
-
getHeight
int getHeight()- Returns:
- number of rows spanned by this grid (≥ 1).
-
getWidth
int getWidth()- Returns:
- number of columns spanned by this grid (≥ 1).
-
isRow
boolean isRow()- Returns:
trueif the grid is logically a single row.
-
isColumn
boolean isColumn()- Returns:
trueif the grid is logically a single column.
-