Package org.apache.poi.ss.usermodel
Enum Class IgnoredErrorType
- All Implemented Interfaces:
Serializable
,Comparable<IgnoredErrorType>
,Constable
Types of ignored workbook and worksheet error.
TODO Implement these for HSSF too, using FeatFormulaErr2,
see bugzilla bug #46136 for details
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription????.Whether to check for references to empty cells.Whether to check for calculation/evaluation errors.Whether to check formulas in the range of the shared feature that are inconsistent with formulas in neighbouring cells.Whether to check formulas in the range of the shared feature with references to less than the entirety of a range containing continuous data.????.Whether to check the format of string values and warn if they look to actually be numeric values.????.Whether to check for unprotected formulas. -
Method Summary
Modifier and TypeMethodDescriptionstatic IgnoredErrorType
Returns the enum constant of this class with the specified name.static IgnoredErrorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CALCULATED_COLUMN
????. Probably XSSF-only. -
EMPTY_CELL_REFERENCE
Whether to check for references to empty cells. HSSF + XSSF. -
EVALUATION_ERROR
Whether to check for calculation/evaluation errors. HSSF + XSSF. -
FORMULA
Whether to check formulas in the range of the shared feature that are inconsistent with formulas in neighbouring cells. HSSF + XSSF. -
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
????. Is this XSSF-specific the same as performDataValidation in HSSF? -
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
????. Is this XSSF-specific the same as checkDateTimeFormats in HSSF? -
UNLOCKED_FORMULA
Whether to check for unprotected formulas. HSSF + XSSF.
-
-
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
-