public enum IgnoredErrorType extends java.lang.Enum<IgnoredErrorType>
Enum Constant and Description |
---|
CALCULATED_COLUMN
????.
|
EMPTY_CELL_REFERENCE
Whether to check for references to empty cells.
|
EVALUATION_ERROR
Whether to check for calculation/evaluation errors.
|
FORMULA
Whether to check formulas in the range of the shared feature
that are inconsistent with formulas in neighbouring cells.
|
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.
|
LIST_DATA_VALIDATION
????.
|
NUMBER_STORED_AS_TEXT
Whether to check the format of string values and warn
if they look to actually be numeric values.
|
TWO_DIGIT_TEXT_YEAR
????.
|
UNLOCKED_FORMULA
Whether to check for unprotected formulas.
|
Modifier and Type | Method and Description |
---|---|
static IgnoredErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IgnoredErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgnoredErrorType CALCULATED_COLUMN
public static final IgnoredErrorType EMPTY_CELL_REFERENCE
public static final IgnoredErrorType EVALUATION_ERROR
public static final IgnoredErrorType FORMULA
public static final IgnoredErrorType FORMULA_RANGE
public static final IgnoredErrorType LIST_DATA_VALIDATION
public static final IgnoredErrorType NUMBER_STORED_AS_TEXT
public static final IgnoredErrorType TWO_DIGIT_TEXT_YEAR
public static final IgnoredErrorType UNLOCKED_FORMULA
public static IgnoredErrorType[] values()
for (IgnoredErrorType c : IgnoredErrorType.values()) System.out.println(c);
public static IgnoredErrorType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.