Enum Class IgnoredErrorType

java.lang.Object
java.lang.Enum<IgnoredErrorType>
org.apache.poi.ss.usermodel.IgnoredErrorType
All Implemented Interfaces:
Serializable, Comparable<IgnoredErrorType>, Constable

public enum IgnoredErrorType extends Enum<IgnoredErrorType>
Types of ignored workbook and worksheet error. TODO Implement these for HSSF too, using FeatFormulaErr2, see bugzilla bug #46136 for details
  • Enum Constant Details

    • CALCULATED_COLUMN

      public static final IgnoredErrorType CALCULATED_COLUMN
      ????. Probably XSSF-only.
    • EMPTY_CELL_REFERENCE

      public static final IgnoredErrorType EMPTY_CELL_REFERENCE
      Whether to check for references to empty cells. HSSF + XSSF.
    • EVALUATION_ERROR

      public static final IgnoredErrorType EVALUATION_ERROR
      Whether to check for calculation/evaluation errors. HSSF + XSSF.
    • FORMULA

      public static final IgnoredErrorType FORMULA
      Whether to check formulas in the range of the shared feature that are inconsistent with formulas in neighbouring cells. HSSF + XSSF.
    • FORMULA_RANGE

      public static final IgnoredErrorType FORMULA_RANGE
      Whether to check formulas in the range of the shared feature with references to less than the entirety of a range containing continuous data. HSSF + XSSF.
    • LIST_DATA_VALIDATION

      public static final IgnoredErrorType LIST_DATA_VALIDATION
      ????. Is this XSSF-specific the same as performDataValidation in HSSF?
    • NUMBER_STORED_AS_TEXT

      public static final IgnoredErrorType NUMBER_STORED_AS_TEXT
      Whether to check the format of string values and warn if they look to actually be numeric values. HSSF + XSSF.
    • TWO_DIGIT_TEXT_YEAR

      public static final IgnoredErrorType TWO_DIGIT_TEXT_YEAR
      ????. Is this XSSF-specific the same as checkDateTimeFormats in HSSF?
    • UNLOCKED_FORMULA

      public static final IgnoredErrorType UNLOCKED_FORMULA
      Whether to check for unprotected formulas. HSSF + XSSF.
  • Method Details

    • values

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