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 org.apache.poi.ss.formula.functions -
-
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
Provides holding structure for temporary values in arrays during the evaluation process.class
LazyAreaEval
Provides Lazy Evaluation to 3D RangesMethods 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
LazyAreaEval. 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
class
ArrayEval
Constant value array eval.class
UnionEval
Represent manyValueEval
s unioned by Union operator(comma operator).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 an AreaEval offset by a relative amount from the upper left cell of this areaAreaEval
ArrayEval. offset(int relFirstRowIx, int relLastRowIx, int relFirstColIx, int relLastColIx)
AreaEval
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. -
Uses of AreaEval in org.apache.poi.ss.formula.functions
Methods in org.apache.poi.ss.formula.functions with parameters of type AreaEval Modifier and Type Method Description protected ValueEval
AverageIf. aggregateMatchingCells(org.apache.poi.ss.formula.functions.Baseifs.Aggregator aggregator, AreaEval sumRange, AreaEval testRange, org.apache.poi.ss.formula.functions.CountUtils.I_MatchPredicate mp)
-