枚举类 SpecialCellType

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

public enum SpecialCellType extends Enum<SpecialCellType>
指定单元格的类型。
  • 枚举常量详细资料

    • AllFormatConditions

      public static final SpecialCellType AllFormatConditions
      指定范围内任何格式条件的单元格。
    • AllValidation

      public static final SpecialCellType AllValidation
      指定范围内具有验证条件的单元格。
    • Blanks

      public static final SpecialCellType Blanks
      指定范围内的空单元格。
    • Comments

      public static final SpecialCellType Comments
      指定范围内包含注释的单元格。
    • Constants

      public static final SpecialCellType Constants
      包含常量的单元格。使用 SpecialCellsValue 枚举按数据类型过滤值。
    • Formulas

      public static final SpecialCellType Formulas
      包含公式的单元格。使用 SpecialCellsValue 枚举按返回类型过滤公式。
    • LastCell

      public static final SpecialCellType LastCell
      指定范围的工作表使用范围中最后一个可见单元格。
    • SameFormatConditions

      public static final SpecialCellType SameFormatConditions
      具有与指定范围左上角单元格相同格式的单元格。
    • SameValidation

      public static final SpecialCellType SameValidation
      具有与指定范围左上单元格相同验证条件的单元格。
    • Visible

      public static final SpecialCellType Visible
      指定范围内所有可见的单元格。
    • MergedCells

      public static final SpecialCellType MergedCells
      合并与指定范围相交的单元格。
    • Tags

      public static final SpecialCellType Tags
      指定范围内包含标签的单元格。
  • 方法详细资料

    • values

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

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

      public int getValue()
    • forValue

      public static SpecialCellType forValue(int value)