Uses of Class
org.apache.poi.ss.usermodel.FormulaError

Packages that use FormulaError
org.apache.poi.ss.usermodel   
 

Uses of FormulaError in org.apache.poi.ss.usermodel
 

Fields in org.apache.poi.ss.usermodel declared as FormulaError
static FormulaError FormulaError.DIV0
          Intended to indicate when any number, including zero, is divided by zero.
static FormulaError FormulaError.NA
          Intended to indicate when a designated value is not available.
static FormulaError FormulaError.NAME
          Intended to indicate when what looks like a name is used, but no such name has been defined.
static FormulaError FormulaError.NULL
          Intended to indicate when two areas are required to intersect, but do not.
static FormulaError FormulaError.NUM
          Intended to indicate when an argument to a function has a compatible type, but has a value that is outside the domain over which that function is defined.
static FormulaError FormulaError.REF
          Intended to indicate when a cell reference is invalid.
static FormulaError FormulaError.VALUE
          Intended to indicate when an incompatible type argument is passed to a function, or an incompatible type operand is used with an operator.
 

Methods in org.apache.poi.ss.usermodel that return FormulaError
static FormulaError FormulaError.forInt(byte type)
           
static FormulaError FormulaError.forString(java.lang.String code)
           
static FormulaError[] FormulaError.values()