Uses of Interface
org.apache.poi.ss.formula.TwoDEval
-
Packages that use TwoDEval 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 TwoDEval in org.apache.poi.ss.formula
Subinterfaces of TwoDEval 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 TwoDEval 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 TwoDEval Modifier and Type Method Description TwoDEval
CacheAreaEval. getColumn(int columnIndex)
TwoDEval
TwoDEval. getColumn(int columnIndex)
TwoDEval
CacheAreaEval. getRow(int rowIndex)
TwoDEval
TwoDEval. getRow(int rowIndex)
-
Uses of TwoDEval in org.apache.poi.ss.formula.eval
Subinterfaces of TwoDEval in org.apache.poi.ss.formula.eval Modifier and Type Interface Description interface
AreaEval
Evaluation of 2D (Row+Column) and 3D (Sheet+Row+Column) areasClasses in org.apache.poi.ss.formula.eval that implement TwoDEval 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 TwoDEval Modifier and Type Method Description TwoDEval
ArrayEval. getColumn(int columnIndex)
TwoDEval
ArrayEval. getRow(int rowIndex)
-
Uses of TwoDEval in org.apache.poi.ss.formula.functions
Methods in org.apache.poi.ss.formula.functions that return TwoDEval Modifier and Type Method Description static TwoDEval
LookupUtils. resolveTableArrayArg(ValueEval eval)
The second argument (table_array) should be an area ref, but can actually be a cell ref, in which case it is interpreted as a 1x1 area ref.Methods in org.apache.poi.ss.formula.functions with parameters of type TwoDEval Modifier and Type Method Description static LookupUtils.ValueVector
LookupUtils. createColumnVector(TwoDEval tableArray, int relativeColumnIndex)
static LookupUtils.ValueVector
LookupUtils. createRowVector(TwoDEval tableArray, int relativeRowIndex)
static LookupUtils.ValueVector
LookupUtils. createVector(TwoDEval ae)
static int
LookupUtils. lookupIndexOfExactValue(ValueEval lookupValue, TwoDEval tableArray, int columnIndex)
-