Module omix.api

Interface VHeaderTable

All Superinterfaces:
Table
All Known Subinterfaces:
HVHeadersTable, HVHeadersTable, VHeaderTable

public interface VHeaderTable
extends Table
Since:
Omix 1.8.5
Author:
Dr. Peter Droste
  • Method Details

    • rows

      int rows()
      returns the number of rows (except vertical header).
      Specified by:
      rows in interface Table
      Returns:
      rows
    • isRowAvailable

      boolean isRowAvailable​(String rowIdentifier)
      checks the availability of a row identifier
      Parameters:
      rowIdentifier -
      Returns:
      availability
    • rowLabels

      List<String> rowLabels()
      returns a list of all available rows.
      Returns:
      row list
    • rowLabel

      String rowLabel​(int row)
      returns the label of the given row.
      Parameters:
      row -
      Returns:
      label
    • getValue

      @IsVarType Object getValue​(String rowIdentifier, int column)
      returns the content of a cell accessed by row identifier and row index if available, otherwise null.
      Parameters:
      rowIdentifier -
      column -
      Returns:
      cell content
    • getRow

      List<@IsVarType Object> getRow​(String rowIdentifier)
      returns the content of a row accessed by identifier if available, otherwise null.
      Parameters:
      rowIdentifier -
      Returns:
      row content
    • getRow

      List<@IsVarType Object> getRow​(String rowIdentifier, int startColumn, int lastColumn)
      returns the content of a row accessed by identifier if available, otherwise null.
      Parameters:
      rowIdentifier -
      startColumn -
      lastColumn -
      Returns:
      row content
    • getColumnByIdentifiers

      Map<String,​@IsVarType Object> getColumnByIdentifiers​(int column)
      returns the content of a column accessed by index if available, otherwise null.
      Parameters:
      column -
      Returns:
      row content
    • getColumnByIdentifiers

      Map<String,​@IsVarType Object> getColumnByIdentifiers​(int column, int startRow, int lastRow)
      returns the content of a column accessed by index if available, otherwise null.
      Parameters:
      column -
      startRow -
      lastRow -
      Returns:
      row content