枚举类 PivotCellType

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

public enum PivotCellType extends Enum<PivotCellType>
指定该单元格对应的PivotTable实体。
  • 枚举常量详细资料

    • Value

      public static final PivotCellType Value
      数据区域内的任何单元格(空白行除外)。
    • PivotItem

      public static final PivotCellType PivotItem
      一个行或列区域中的单元格,它不是小计、总计、自定义小计或空白行。
    • Subtotal

      public static final PivotCellType Subtotal
      行或列区域中的一个小计单元格。
    • GrandTotal

      public static final PivotCellType GrandTotal
      一个行或列区域中的单元格,表示总总计。
    • DataField

      public static final PivotCellType DataField
      一个数据字段标签(不是数据按钮)。
    • PivotField

      public static final PivotCellType PivotField
      字段按钮(非数据按钮)。
    • PageFieldItem

      public static final PivotCellType PageFieldItem
      显示页面字段选中项的单元格。
    • CustomSubtotal

      public static final PivotCellType CustomSubtotal
      一个在行或列区域中的自定义小计单元格。
    • DataPivotField

      public static final PivotCellType DataPivotField
      数据按钮。
    • BlankCell

      public static final PivotCellType BlankCell
      一个在数据透视表中的结构空白单元格。
  • 方法详细资料

    • values

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

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