Class TableItemType
java.lang.Object
com.grapecity.documents.excel.expressions.TableItemType
Represents parts of a table.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TableItemType[#Data] The data part.static final TableItemType[#Headers] The headers part.static final TableItemTypeNo item specifier was used.static final TableItemType@[Column_Name] The current row.static final TableItemType[#Totals] The totals part. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic TableItemTypeforValue(int value) Widening operator from integer.intgetValue()Narrowing operator to integer.static TableItemTypeof(TableItemType value1, TableItemType value2) Combines TableItemType values with the bit or operator.static TableItemTypeof(TableItemType value1, TableItemType value2, TableItemType value3) Combines TableItemType values with the bit or operator.
-
Field Details
-
None
No item specifier was used. -
Headers
[#Headers] The headers part. -
Data
[#Data] The data part. -
Totals
[#Totals] The totals part. -
ThisRow
@[Column_Name] The current row.
-
-
Constructor Details
-
TableItemType
public TableItemType()
-
-
Method Details
-
getValue
public int getValue()Narrowing operator to integer.- Returns:
- The integer value.
-
forValue
Widening operator from integer. -
of
Combines TableItemType values with the bit or operator.- Parameters:
value1- The TableItemType value 1.value2- The TableItemType value 2.- Returns:
- The combined value.
-
of
Combines TableItemType values with the bit or operator.- Parameters:
value1- The TableItemType value 1.value2- The TableItemType value 2.value3- The TableItemType value 3.- Returns:
- The combined value.
-