Package com.grapecity.documents.excel
Enum Class TableStyleElementType
- All Implemented Interfaces:
Serializable,Comparable<TableStyleElementType>,Constable
Specifies the table style element used.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies the blank row.Specifies the first column.Specifies the first column stripes.Specifies the first column subheading in pivot.Specifies the first header cell.Specifies the first row stripes.Specifies the first row subheading in pivot.Specifies the first subtotal column in pivot.Specifies the first subtotal row in pivot.Specifies the first total cell.Specifies the grand total column in pivot.Specifies the grand total row in pivot.Specifes the header row.Specifies 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 column.Specifies the last header cell.Specifies the last total cell.Specifies page field labels.Specifies page field values.Specifies the second column stripes.Specifies the second column subheading in pivot.Specifies the second row stripes.Specifies the second row subheading in pivot.Specifies the second subtotal column in pivot.Specifies the second subtotal row in pivot.Specifies a selected item that contains data.Specifies a selected item that does not contain data.Specifies the third column subheading in pivot.Specifies the third row subheading in pivot.Specifies the third subtotal column in pivot.Specifies the third subtotal row in pivot.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. -
Method Summary
Modifier and TypeMethodDescriptionstatic TableStyleElementTypeforValue(int value) intgetValue()static TableStyleElementTypeReturns 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.
-
Enum Constant Details
-
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 the first row stripes. -
SecondRowStripe
Specifies the second row stripes. -
FirstColumnStripe
Specifies the first column stripes. -
SecondColumnStripe
Specifies the second column stripes. -
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 first subtotal column in pivot. -
SecondSubtotalColumn
Specifies the second subtotal column in pivot. -
ThirdSubtotalColumn
Specifies the third subtotal column in pivot. -
FirstSubtotalRow
Specifies the first subtotal row in pivot. -
SecondSubtotalRow
Specifies the second subtotal row in pivot. -
ThirdSubtotalRow
Specifies the third subtotal row in pivot. -
BlankRow
Specifies the blank row. -
FirstColumnSubheading
Specifies the first column subheading in pivot. -
SecondColumnSubheading
Specifies the second column subheading in pivot. -
ThirdColumnSubheading
Specifies the third column subheading in pivot. -
FirstRowSubheading
Specifies the first row subheading in pivot. -
SecondRowSubheading
Specifies the second row subheading in pivot. -
ThirdRowSubheading
Specifies the third row subheading in pivot. -
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. -
TimelineSelectionLabel
-
TimelineTimeLevel
-
TimelinePeriodLabels1
-
TimelinePeriodLabels2
-
TimelineSelectedTimeBlock
-
TimelineUnselectedTimeBlock
-
TimelineSelectedTimeBlockSpace
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- 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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue() -
forValue
-