Class Table


  • public class Table
    extends Object
    Implements a very basic table parser.
    • Constructor Detail

      • Table

        public Table()
    • Method Detail

      • getCell

        public Table.Cell getCell​(int row,
                                  int col,
                                  boolean create)
      • getIntData

        public int[][] getIntData​(int rowStart,
                                  int numRows,
                                  int colStart,
                                  int numCols)
      • getIntData

        public int[][] getIntData()
      • getDoubleData

        public double[][] getDoubleData​(int rowStart,
                                        int numRows,
                                        int colStart,
                                        int numCols)
      • getDoubleData

        public double[][] getDoubleData()
      • setSize

        public void setSize​(int numRows,
                            int numCols)
      • getRow

        public Table.Row getRow​(int nr)
      • getNumCols

        public int getNumCols()
      • getNumRows

        public int getNumRows()
      • clear

        public void clear()
      • fromCSV

        public static Table fromCSV​(String s,
                                    char delim)