Package org.apache.poi.ss.usermodel
Enum FormulaError
- java.lang.Object
-
- java.lang.Enum<FormulaError>
-
- org.apache.poi.ss.usermodel.FormulaError
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FormulaError>
public enum FormulaError extends java.lang.Enum<FormulaError>
Enumerates error values in SpreadsheetML formula calculations. See also OOO's excelfileformat.pdf (2.5.6)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _NO_ERRORCIRCULAR_REFPOI specific code to indicate that there is a circular reference in the formulaDIV0Intended to indicate when any number, including zero, is divided by zero.FUNCTION_NOT_IMPLEMENTEDPOI specific code to indicate that the funcition required is not implemented in POINAIntended to indicate when a designated value is not available.NAMEIntended to indicate when what looks like a name is used, but no such name has been defined.NULLIntended to indicate when two areas are required to intersect, but do not.NUMIntended 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.REFIntended to indicate when a cell reference is invalid.VALUEIntended to indicate when an incompatible type argument is passed to a function, or an incompatible type operand is used with an operator.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FormulaErrorforInt(byte type)static FormulaErrorforInt(int type)static FormulaErrorforString(java.lang.String code)bytegetCode()intgetLongCode()java.lang.StringgetString()static booleanisValidCode(int errorCode)static FormulaErrorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FormulaError[]
-