Uses of Class
org.apache.poi.ss.usermodel.FormulaError
-
Packages that use FormulaError Package Description org.apache.poi.hssf.record Record package contains class representations for XLS binary strutures.org.apache.poi.hssf.record.aggregates The record aggregates are not real "records" but collections of records that act as a single record.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel -
-
Uses of FormulaError in org.apache.poi.hssf.record
Methods in org.apache.poi.hssf.record with parameters of type FormulaError Modifier and Type Method Description void
BoolErrRecord. setValue(FormulaError value)
set the error value for the cell -
Uses of FormulaError in org.apache.poi.hssf.record.aggregates
Methods in org.apache.poi.hssf.record.aggregates with parameters of type FormulaError Modifier and Type Method Description void
FormulaRecordAggregate. setCachedErrorResult(FormulaError error)
-
Uses of FormulaError in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel with parameters of type FormulaError Modifier and Type Method Description void
HSSFCell. setCellErrorValue(FormulaError error)
set an error value for the cell -
Uses of FormulaError in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return FormulaError Modifier and Type Method Description static FormulaError
FormulaError. forInt(byte type)
static FormulaError
FormulaError. forInt(int type)
static FormulaError
FormulaError. forString(String code)
static FormulaError
FormulaError. valueOf(String name)
Returns the enum constant of this type with the specified name.static FormulaError[]
FormulaError. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-