Uses of Class
uk.ac.ed.inf.utils.database.TableColumn

Packages that use TableColumn
uk.ac.ed.inf.utils.database   
 

Uses of TableColumn in uk.ac.ed.inf.utils.database
 

Methods in uk.ac.ed.inf.utils.database that return TableColumn
static TableColumn DbUtils.getIdColumn()
          get the definition for an "id" column of type auto-increment (which is primary key)
static TableColumn DbUtils.getTimeDownloadedColumn()
           
static TableColumn DbUtils.getTimestampColumn()
           
 

Methods in uk.ac.ed.inf.utils.database that return types with arguments of type TableColumn
 java.util.Vector<TableColumn> Table.getColumns()
          Get the TableColumn list
 

Methods in uk.ac.ed.inf.utils.database with parameters of type TableColumn
 int TableColumn.compareTo(TableColumn f2)
          Compares two columns by their name, returns -1 if this column comes alphabetically before f2, 0 if the two are equal and +1 if f2 comes alphabetically before this column.
 boolean TableColumn.equals(TableColumn anotherColumn)
          Compares two columns by their name, returns true if the two columns have the same name, false otherwise.
 

Constructor parameters in uk.ac.ed.inf.utils.database with type arguments of type TableColumn
Table(java.lang.String tableName, java.util.Vector<TableColumn> columns)
          List of primary key fields (starting from 0)