Interface TableRow

    • Method Detail

      • getString

        String getString​(String columnName)
        Parameters:
        columnName - title of the column to reference
      • getInt

        int getInt​(String columnName)
        Parameters:
        columnName - title of the column to reference
      • getLong

        long getLong​(int column)
        Parameters:
        column - ID number of the column to reference
        See Also:
        getFloat(int), getString(int)
      • getLong

        long getLong​(String columnName)
        Parameters:
        columnName - title of the column to reference
      • getFloat

        float getFloat​(int column)
        Parameters:
        column - ID number of the column to reference
        See Also:
        getInt(int), getString(int)
      • getFloat

        float getFloat​(String columnName)
        Parameters:
        columnName - title of the column to reference
      • getDouble

        double getDouble​(int column)
        Parameters:
        column - ID number of the column to reference
        See Also:
        getInt(int), getString(int)
      • getDouble

        double getDouble​(String columnName)
        Parameters:
        columnName - title of the column to reference
      • setString

        void setString​(String columnName,
                       String value)
        Parameters:
        columnName - title of the target column
      • setInt

        void setInt​(String columnName,
                    int value)
        Parameters:
        columnName - title of the target column
      • setLong

        void setLong​(String columnName,
                     long value)
        Parameters:
        columnName - title of the target column
      • setFloat

        void setFloat​(String columnName,
                      float value)
        Parameters:
        columnName - title of the target column
      • setDouble

        void setDouble​(String columnName,
                       double value)
        Parameters:
        columnName - title of the target column
      • getColumnCount

        int getColumnCount()
        Returns:
        count of all columns
      • getColumnType

        int getColumnType​(String columnName)
        Parameters:
        columnName - title of the target column
        Returns:
        type of the column
      • getColumnType

        int getColumnType​(int column)
        Parameters:
        column - ID number of the target column
      • getColumnTypes

        int[] getColumnTypes()
        Returns:
        list of all column types
      • getColumnTitle

        String getColumnTitle​(int column)
        Parameters:
        column - ID number of the target column
        Returns:
        title of the column
      • getColumnTitles

        String[] getColumnTitles()
        Returns:
        list of all column titles
      • print

        void print()