Enum Class ErrorCheckType

java.lang.Object
java.lang.Enum<ErrorCheckType>
io.keikai.model.ErrorCheckType
All Implemented Interfaces:
Serializable, Comparable<ErrorCheckType>, Constable

public enum ErrorCheckType extends Enum<ErrorCheckType>
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:
  • Enum Constant Details

    • EVAL_ERROR

      public static final ErrorCheckType EVAL_ERROR
      Suppress evaluation error indicators (#VALUE!, #REF!, etc.).
    • EMPTY_CELL_REFERENCE

      public static final ErrorCheckType EMPTY_CELL_REFERENCE
      Formula references empty cells.
    • NUMBER_STORED_AS_TEXT

      public static final ErrorCheckType NUMBER_STORED_AS_TEXT
      Number stored as text (green triangle indicator).
    • INCONSISTENT_FORMULA

      public static final ErrorCheckType INCONSISTENT_FORMULA
      Formula is inconsistent with adjacent cells.
    • FORMULA_RANGE

      public static final ErrorCheckType FORMULA_RANGE
      Formula omits adjacent cells.
    • TWO_DIGIT_TEXT_YEAR

      public static final ErrorCheckType TWO_DIGIT_TEXT_YEAR
      Two-digit year in date value.
    • UNLOCKED_FORMULA

      public static final ErrorCheckType UNLOCKED_FORMULA
      Formula cell is unlocked on a protected sheet.
    • CALCULATED_COLUMN

      public static final ErrorCheckType CALCULATED_COLUMN
      Calculated column inconsistency in a table.
    • LIST_DATA_VALIDATION

      public static final ErrorCheckType LIST_DATA_VALIDATION
      List data validation issue.
  • Method Details

    • values

      public static ErrorCheckType[] 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

      public static ErrorCheckType valueOf(String name)
      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