Interface ITable<T extends ITable<T>>

    • Method Detail

      • getWidth

        int getWidth()
        Returns:
        width of the table
      • getHeight

        int getHeight()
        Returns:
        height of the table
      • getCell

        ICell getCell​(int column,
                      int row)
        Parameters:
        column -
        row -
        Returns:
        cell form the given column and row.
      • getColumn

        T getColumn​(int column)
        Parameters:
        column -
        Returns:
        the column represented as ITable by it`s index.
      • getColumns

        T getColumns​(int from)
        Parameters:
        from -
        Returns:
        the columns represented as ITable from given index and till the right last column, including borders.
      • getColumns

        T getColumns​(int from,
                     int to)
        Parameters:
        from -
        to -
        Returns:
        the columns represented as ITable from given start index and till the given end.
      • getRow

        T getRow​(int row)
        Parameters:
        row -
        Returns:
        the row represented as ITable by it`s index.
      • getRows

        T getRows​(int from)
        Parameters:
        from -
        Returns:
        the rows represented as ITable from given index and till the bottom row, including borders.
      • getRows

        T getRows​(int from,
                  int to)
        Parameters:
        from -
        to -
        Returns:
        the rows represented as ITable from given start index and till the given end.
      • getSubtable

        T getSubtable​(int column,
                      int row,
                      int width,
                      int height)
        Parameters:
        column - from which we want to take the subtable, including border.
        row - from which we want to take the subtable, including border.
        width - of the needed table.
        height - of the needed table.
        Returns:
        the subtable of this table.