Uses of Class
org.apache.poi.ss.formula.FormulaType
-
Packages that use FormulaType Package Description io.keikai.model.impl.sys.formula Keikai Spreadsheet Internal Book Model Implementation classes.org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.org.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas. -
-
Uses of FormulaType in io.keikai.model.impl.sys.formula
Methods in io.keikai.model.impl.sys.formula that return FormulaType Modifier and Type Method Description static FormulaType
FormulaEngineImpl. convertToPOIFormulaType(FormulaType formulaType)
-
Uses of FormulaType in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model with parameters of type FormulaType Modifier and Type Method Description static Ptg[]
HSSFFormulaParser. parse(String formula, HSSFWorkbook workbook, FormulaType formulaType)
static Ptg[]
HSSFFormulaParser. parse(String formula, HSSFWorkbook workbook, FormulaType formulaType, int sheetIndex)
-
Uses of FormulaType in org.apache.poi.ss.formula
Methods in org.apache.poi.ss.formula that return FormulaType Modifier and Type Method Description static FormulaType
FormulaType. forInt(int code)
Used to transition fromint
s (possibly stored in the Excel file) toFormulaType
s.static FormulaType
FormulaType. valueOf(String name)
Returns the enum constant of this type with the specified name.static FormulaType[]
FormulaType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.poi.ss.formula with parameters of type FormulaType Modifier and Type Method Description static Ptg[]
FormulaParser. parse(String formula, FormulaParsingWorkbook workbook, FormulaType formulaType, int sheetIndex)
Parse a formula into an array of tokens Side effect: creates name (Workbook.createName()
) if formula contains unrecognized names (names are likely UDFs)static Ptg[]
FormulaParser. parse(String formula, FormulaParsingWorkbook workbook, FormulaType formulaType, int sheetIndex, int rowIndex)
Parse a formula into an array of tokens Side effect: creates name (Workbook.createName()
) if formula contains unrecognized names (names are likely UDFs)static Ptg[]
FormulaParser. parse(String formula, FormulaParsingWorkbook workbook, FormulaType formulaType, int sheetIndex, int rowIndex, int colIndex)
static Ptg[]
FormulaTokenParser. parse(String formula, FormulaParsingWorkbook book, int sheetIndex, Locale locale, int rowIndex, int colIndex, FormulaType formulaType)
static Ptg[]
FormulaTokenParser. parse(String formula, FormulaParsingWorkbook book, int sheetIndex, FormulaType formulaType)
Constructors in org.apache.poi.ss.formula with parameters of type FormulaType Constructor Description TokenOperandClassTransformer(FormulaType formulaType, List<Ptg> ptgs)
-