[]
        
(Showing Draft Content)

TableItemType

Class TableItemType

java.lang.Object
com.grapecity.documents.excel.expressions.TableItemType

public class TableItemType extends Object
Represents parts of a table.
  • Field Details

    • None

      public static final TableItemType None
      No item specifier was used.
    • Headers

      public static final TableItemType Headers
      [#Headers] The headers part.
    • Data

      public static final TableItemType Data
      [#Data] The data part.
    • Totals

      public static final TableItemType Totals
      [#Totals] The totals part.
    • ThisRow

      public static final TableItemType 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

      public static TableItemType forValue(int value)
      Widening operator from integer.
    • of

      public static TableItemType of(TableItemType value1, TableItemType value2)
      Combines TableItemType values with the bit or operator.
      Parameters:
      value1 - The TableItemType value 1.
      value2 - The TableItemType value 2.
      Returns:
      The combined value.
    • of

      public static TableItemType of(TableItemType value1, TableItemType value2, TableItemType value3)
      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.