枚举类 IgnoredErrorType

java.lang.Object
java.lang.Enum<IgnoredErrorType>
com.grapecity.documents.excel.IgnoredErrorType
所有已实现的接口:
Serializable, Comparable<IgnoredErrorType>, Constable

public enum IgnoredErrorType extends Enum<IgnoredErrorType>
单元格中可能发生的错误类型。
  • 枚举常量详细资料

    • InconsistentListFormula

      public static final IgnoredErrorType InconsistentListFormula
      忽略计算列中公式内不一致性的错误。
    • InconsistentFormula

      public static final IgnoredErrorType InconsistentFormula
      忽略在范围内公式不一致的错误。
    • OmittedCells

      public static final IgnoredErrorType OmittedCells
      忽略包含指向省略了可能包含的相邻单元格的区域的公式的单元格中的错误。
    • TextDate

      public static final IgnoredErrorType TextDate
      忽略公式中包含的被误解为错误世纪的文本格式化单元格年份时的错误。
    • EmptyCellReferences

      public static final IgnoredErrorType EmptyCellReferences
      忽略公式中包含对空单元格的引用时的错误。
    • ListDataValidation

      public static final IgnoredErrorType ListDataValidation
      忽略不符合数据验证规则中的单元格值错误,该规则限制数据必须为列表中预定义的项目。
    • EvaluateToError

      public static final IgnoredErrorType EvaluateToError
      忽略公式结果错误的错误。
      公式结果错误类型包括 #DIV/0!#N/A#NAME?#NULL!#NUM!#REF!,以及 #VALUE!
    • NumberAsText

      public static final IgnoredErrorType NumberAsText
      忽略包含以文本形式存储的数字或前面带有撇号的单元格中的错误。
    • UnlockedFormulaCells

      public static final IgnoredErrorType UnlockedFormulaCells
      忽略包含公式的未锁定单元格中的错误。
  • 方法详细资料

    • values

      public static IgnoredErrorType[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static IgnoredErrorType valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值