Class Table.RowRange

  • Enclosing class:
    Table

    public static class Table.RowRange
    extends java.lang.Object
    A simple object which holds the row numbers of a section of a table.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) int finishRow  
      (package private) int startRow  
    • Constructor Summary

      Constructors 
      Constructor Description
      RowRange​(int startRow, int finishRow)
      Creates a Table.RowRange
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getFinishRow()
      Gets the finishing row number of the table section
      int getStartRow()
      Gets the starting row number of the table section
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • startRow

        int startRow
      • finishRow

        int finishRow
    • Constructor Detail

      • RowRange

        public RowRange​(int startRow,
                        int finishRow)
        Creates a Table.RowRange
        Parameters:
        startRow - the start number of the row group, inclusive
        finishRow - the finish number of the row group, inclusive
    • Method Detail

      • getStartRow

        public int getStartRow()
        Gets the starting row number of the table section
        Returns:
        the start number of the row group, inclusive
      • getFinishRow

        public int getFinishRow()
        Gets the finishing row number of the table section
        Returns:
        the finish number of the row group, inclusive