public enum SpreadsheetCalculationError extends Enum<SpreadsheetCalculationError>
Enum Constant and Description |
---|
DIVIDE_BY_ZERO
Divide by zero error.
|
NAME
Undefined function or identifier.
|
NOT_AVAILABLE
Designated value is not available.
|
NULL
Null value error.
|
NUMBER
Value cannot be converted to number or number is out of defined range.
|
REFERENCE
Cell reference evaluation error.
|
SPILL
Spill range is not blank.
|
VALUE
Incompatible argument type error.
|
Modifier and Type | Method and Description |
---|---|
static SpreadsheetCalculationError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpreadsheetCalculationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpreadsheetCalculationError DIVIDE_BY_ZERO
public static final SpreadsheetCalculationError NAME
public static final SpreadsheetCalculationError NOT_AVAILABLE
public static final SpreadsheetCalculationError NULL
public static final SpreadsheetCalculationError NUMBER
public static final SpreadsheetCalculationError REFERENCE
public static final SpreadsheetCalculationError SPILL
public static final SpreadsheetCalculationError VALUE
public static SpreadsheetCalculationError valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static SpreadsheetCalculationError[] values()
for (SpreadsheetCalculationError c : SpreadsheetCalculationError.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.