Package io.keikai.model
Enum Class ErrorCheckType
- All Implemented Interfaces:
Serializable,Comparable<ErrorCheckType>,Constable
Types of error checks that can be suppressed (ignored) on cells.
Corresponds to the attributes of <ignoredError> in
ECMA-376 Section 18.3.1.39.
- Since:
- 7.0.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCalculated column inconsistency in a table.Formula references empty cells.Suppress evaluation error indicators (#VALUE!, #REF!, etc.).Formula omits adjacent cells.Formula is inconsistent with adjacent cells.List data validation issue.Number stored as text (green triangle indicator).Two-digit year in date value.Formula cell is unlocked on a protected sheet. -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorCheckTypeReturns the enum constant of this class with the specified name.static ErrorCheckType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EVAL_ERROR
Suppress evaluation error indicators (#VALUE!, #REF!, etc.). -
EMPTY_CELL_REFERENCE
Formula references empty cells. -
NUMBER_STORED_AS_TEXT
Number stored as text (green triangle indicator). -
INCONSISTENT_FORMULA
Formula is inconsistent with adjacent cells. -
FORMULA_RANGE
Formula omits adjacent cells. -
TWO_DIGIT_TEXT_YEAR
Two-digit year in date value. -
UNLOCKED_FORMULA
Formula cell is unlocked on a protected sheet. -
CALCULATED_COLUMN
Calculated column inconsistency in a table. -
LIST_DATA_VALIDATION
List data validation issue.
-
-
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 nameNullPointerException- if the argument is null
-