Enum Class CalcError
Enum Constant Summary
Enum Constants
Indicates that the connection is blocked or prevented from being established.
Indicates that a cell is calculating an async formula.
Occurs when the calculation engine encounters a scenario it does not currently support.
Indicates that the connection is failed or unable to be established.
Occurs when a formula attempts to divide by zero.
Indicates that an error occurred while retrieving data.
Indicates that a value is not available to a formula.
Occurs if Excel does not recognise a formula name or does not recognise text within a formula.
Occurs when you refer to an intersection of two ranges that do not intersect.
Occurs when Excel encounters an invalid number.
Occurs when a formula contains an invalid cell reference.
Indicates that a formula returns multiple results, but can't return these values to neighboring cells.
Occurs if one of the variables in your formula is of the wrong type (e.g.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
Retrieves the enum constant corresponding to the specified integer value.
int
Retrieves the integer value representing the enum constant.
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
Null
Occurs when you refer to an intersection of two ranges that do not intersect.
Div0
Occurs when a formula attempts to divide by zero.
Value
Occurs if one of the variables in your formula is of the wrong type (e.g. text value when a numeric value is expected).
Ref
Occurs when a formula contains an invalid cell reference.
Name
Occurs if Excel does not recognise a formula name or does not recognise text within a formula.
Num
Occurs when Excel encounters an invalid number.
NA
Indicates that a value is not available to a formula.
GettingData
Indicates that an error occurred while retrieving data.
Spill
Indicates that a formula returns multiple results, but can't return these values to neighboring cells.
Calc
Occurs when the calculation engine encounters a scenario it does not currently support.
Busy
Indicates that a cell is calculating an async formula.
Connect
Indicates that the connection is failed or unable to be established.
Blocked
Indicates that the connection is blocked or prevented from being established.
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name
- the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException
- if this enum class has no constant with the specified name
NullPointerException
- if the argument is null
getValue
public int getValue ()
Retrieves the integer value representing the enum constant.
Returns:
The ordinal value of the enum constant.
forValue
Retrieves the enum constant corresponding to the specified integer value.
Parameters:
value
- The integer value representing the enum constant.
Returns:
The CalcError enum constant.