Uses of Enum Class
org.apache.poi.ss.formula.FormulaType
Packages that use FormulaType
Package
Description
Provides low level API structures for reading, writing, modifying XLS files.
This package contains common internal POI code for manipulating formulas.
-
Uses of FormulaType in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model with parameters of type FormulaTypeModifier and TypeMethodDescriptionstatic 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 FormulaTypeModifier and TypeMethodDescriptionstatic FormulaType
FormulaType.forInt
(int code) Used to transition fromint
s (possibly stored in the Excel file) toFormulaType
s.static FormulaType
Returns the enum constant of this class with the specified name.static FormulaType[]
FormulaType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.poi.ss.formula with parameters of type FormulaTypeModifier and TypeMethodDescriptionstatic 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)