Uses of Class
nom.tam.util.TableException

Packages that use TableException
Package
Description
Various commonly used classes for nom-tam-fits.
  • Uses of TableException in nom.tam.util

    Methods in nom.tam.util that throw TableException
    Modifier and Type
    Method
    Description
    void
    ColumnTable.addColumn(Class<?> type, int size)
    Adds a new column with the specified primitive base class and element count.
    void
    ColumnTable.addColumn(Object newColumn, int size)
    Adds a column in flattened 1D format, specifying the size of array 'elements'.
    void
    ColumnTable.addRow(Object[] row)
    Add a row to the table.
    void
    ColumnTable.addWrappedColumn(Object newColumn)
    Adds a column as an array of scalars or regular 1D primitve array elements.
    ColumnTable.copy()
    Returns a deep copy of this column table, such that modification to either the original or the copy will not affect the other.
    final void
    ColumnTable.deleteAllRows()
    Delete all rows from the table, but leaving the column structure intact.
    void
    ColumnTable.deleteColumn(int col)
    Deletes a column from this table.
    void
    ColumnTable.deleteColumns(int start, int len)
    Delete a contiguous set of columns from the table.
    final void
    ColumnTable.deleteRow(int row)
    Delete a row from the table.
    void
    ColumnTable.deleteRows(int from, int length)
    Delete a contiguous set of rows from the table.
    void
    ColumnTable.setColumn(int col, Object newColumn)
     
    void
    DataTable.setColumn(int column, Object newColumn)
    Sets new data for a table column.
    void
    ColumnTable.setElement(int row, int col, Object x)
     
    void
    DataTable.setElement(int row, int col, Object newElement)
    Sets new data element in this table
    void
    ColumnTable.setRow(int row, Object data)
     
    void
    DataTable.setRow(int row, Object newRow)
    Sets new data for a table row
    void
    ColumnTable.setWrappedColumn(int col, Object newColumn)
    Sets new data for a column, in wrapped format.
    Constructors in nom.tam.util that throw TableException
    Modifier
    Constructor
    Description
     
    ColumnTable(Object[] arrays, int[] sizes)
    Create the object after checking consistency.