Uses of Interface
org.apache.poi.ss.formula.eval.AreaEval
-
Packages that use AreaEval Package Description org.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas.org.apache.poi.ss.formula.eval -
-
Uses of AreaEval in org.apache.poi.ss.formula
Classes in org.apache.poi.ss.formula that implement AreaEval Modifier and Type Class Description class
CacheAreaEval
Methods in org.apache.poi.ss.formula that return AreaEval Modifier and Type Method Description AreaEval
CacheAreaEval. offset(int relFirstRowIx, int relLastRowIx, int relFirstColIx, int relLastColIx)
AreaEval
LazyRefEval. offset(int relFirstRowIx, int relLastRowIx, int relFirstColIx, int relLastColIx)
-
Uses of AreaEval in org.apache.poi.ss.formula.eval
Classes in org.apache.poi.ss.formula.eval that implement AreaEval Modifier and Type Class Description class
AreaEvalBase
Methods in org.apache.poi.ss.formula.eval that return AreaEval Modifier and Type Method Description AreaEval
AreaEval. offset(int relFirstRowIx, int relLastRowIx, int relFirstColIx, int relLastColIx)
Creates anAreaEval
offset by a relative amount from from the upper left cell of this areaAreaEval
RefEval. offset(int relFirstRowIx, int relLastRowIx, int relFirstColIx, int relLastColIx)
Creates anAreaEval
offset by a relative amount from this RefEvalMethods in org.apache.poi.ss.formula.eval with parameters of type AreaEval Modifier and Type Method Description static ValueEval
OperandResolver. chooseSingleElementFromArea(AreaEval ae, int srcCellRow, int srcCellCol)
Implements (some perhaps not well known) Excel functionality to select a single cell from an area depending on the coordinates of the calling cell.static ValueEval
OperandResolver. getElementFromArray(AreaEval ae, EvaluationCell cell)
Retrieves a single value from an area evaluation utilizing the 2D indices of the cell within its own area reference to index the value in the area evaluation.
-