Enum Class TableStyleElementType
- 所有已实现的接口:
Serializable
,Comparable<TableStyleElementType>
,Constable
Specifies the table style element used.
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明Specifies the blank row.Specifies the first column.Specifies column stripe1.Specifies column subheading1.Specifies the first header cell.Specifies row stripe1.Specifies row subheading1.Specifies the subtotal column1.Specifies the subtotal row1.Specifies the first total cell.Specifies the grand total column in pivot.Specifies the grand total row in pivot.Specifes the header rowSpecifies a selected item, hovered over by the user, that contains data.Specifies a selected item, hovered over by the user, that does not contain data.Specifies an item, hovered over by the user, that is not selected and that contains data.Specifies a selected item, hovered over by the user, that is not selected and that does not contain data.Specifies the last columnSpecifies the last header cell.Specifies the last total cell.Specifies page field labels.Specifies page field values.Specifies column stripe2.Specifies column subheading2.Specifies row stripe2.Specifies row subheading2.Specifies the subtotal column2.Specifies the subtotal row2.Specifies a selected item that contains data.Specifies a selected item that does not contain data.Specifies column subheading3.Specifies row subheading3.Specifies the subtotal column3.Specifies the subtotal row3.Specifies the total row.Specifies an item that is not selected that contains data.Specifies an item that is not selected that does not contain data.Specifies the entire table. -
方法概要
修饰符和类型方法说明static TableStyleElementType
forValue
(int value) int
getValue()
static TableStyleElementType
Returns the enum constant of this class with the specified name.static TableStyleElementType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
WholeTable
Specifies the entire table. -
HeaderRow
Specifes the header row -
TotalRow
Specifies the total row. -
GrandTotalRow
Specifies the grand total row in pivot. -
FirstColumn
Specifies the first column. -
LastColumn
Specifies the last column -
GrandTotalColumn
Specifies the grand total column in pivot. -
FirstRowStripe
Specifies row stripe1. -
SecondRowStripe
Specifies row stripe2. -
FirstColumnStripe
Specifies column stripe1. -
SecondColumnStripe
Specifies column stripe2. -
FirstHeaderCell
Specifies the first header cell. -
LastHeaderCell
Specifies the last header cell. -
FirstTotalCell
Specifies the first total cell. -
LastTotalCell
Specifies the last total cell. -
FirstSubtotalColumn
Specifies the subtotal column1. -
SecondSubtotalColumn
Specifies the subtotal column2. -
ThirdSubtotalColumn
Specifies the subtotal column3. -
FirstSubtotalRow
Specifies the subtotal row1. -
SecondSubtotalRow
Specifies the subtotal row2. -
ThirdSubtotalRow
Specifies the subtotal row3. -
BlankRow
Specifies the blank row. -
FirstColumnSubheading
Specifies column subheading1. -
SecondColumnSubheading
Specifies column subheading2. -
ThirdColumnSubheading
Specifies column subheading3. -
FirstRowSubheading
Specifies row subheading1. -
SecondRowSubheading
Specifies row subheading2. -
ThirdRowSubheading
Specifies row subheading3. -
PageFieldLabels
Specifies page field labels. -
PageFieldValues
Specifies page field values. -
UnselectedItemWithData
Specifies an item that is not selected that contains data. -
UnselectedItemWithNoData
Specifies an item that is not selected that does not contain data. -
SelectedItemWithData
Specifies a selected item that contains data. -
SelectedItemWithNoData
Specifies a selected item that does not contain data. -
HoveredUnselectedItemWithData
Specifies an item, hovered over by the user, that is not selected and that contains data. -
HoveredSelectedItemWithData
Specifies a selected item, hovered over by the user, that contains data. -
HoveredUnselectedItemWithNoData
Specifies a selected item, hovered over by the user, that is not selected and that does not contain data. -
HoveredSelectedItemWithNoData
Specifies a selected item, hovered over by the user, that does not contain data.
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- 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.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-
getValue
public int getValue() -
forValue
-