Uses of Interface
org.apache.poi.ss.formula.SheetRange
-
Packages that use SheetRange 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 SheetRange in org.apache.poi.ss.formula
Subinterfaces of SheetRange in org.apache.poi.ss.formula Modifier and Type Interface Description interface
ThreeDEval
Optional Extension to the likes ofAreaEval
andAreaEvalBase
, which allows for looking up 3D (sheet+row+column) evaluationsClasses in org.apache.poi.ss.formula that implement SheetRange 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 Rangesclass
LazyRefEval
Provides Lazy Evaluation to a 3D Referenceclass
SheetRangeEvaluator
Evaluator for returning cells or sheets for a range of sheets -
Uses of SheetRange in org.apache.poi.ss.formula.eval
Subinterfaces of SheetRange in org.apache.poi.ss.formula.eval Modifier and Type Interface Description interface
AreaEval
Evaluation of 2D (Row+Column) and 3D (Sheet+Row+Column) areasinterface
RefEval
RefEval is the super interface for Ref2D and Ref3DEval.Classes in org.apache.poi.ss.formula.eval that implement SheetRange Modifier and Type Class Description class
AreaEvalBase
class
ArrayEval
Constant value array eval.class
RefEvalBase
Common base class for implementors ofRefEval
class
UnionEval
Represent manyValueEval
s unioned by Union operator(comma operator).Constructors in org.apache.poi.ss.formula.eval with parameters of type SheetRange Constructor Description AreaEvalBase(AreaI ptg, SheetRange sheets)
AreaEvalBase(SheetRange sheets, int firstRow, int firstColumn, int lastRow, int lastColumn, boolean firstRowRel, boolean firstColRel, boolean lastRowRel, boolean lastColRel)
RefEvalBase(SheetRange sheetRange, int rowIndex, int columnIndex, boolean rowRel, boolean colRel)
-