Uses of Class
org.apache.poi.ss.formula.FormulaType
-
Packages that use FormulaType Package Description 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 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(java.lang.String formula, HSSFWorkbook workbook, FormulaType formulaType)
static Ptg[]
HSSFFormulaParser. parse(java.lang.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(java.lang.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(java.lang.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(java.lang.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)
-