Uses of Class
uk.ac.ebi.adfconverter.common.data.tabulardata.DataTable

Packages that use DataTable
uk.ac.ebi.adfconverter.common.data.tabulardata   
uk.ac.ebi.adfconverter.common.tools.file.reader   
uk.ac.ebi.adfconverter.common.tools.file.writer   
uk.ac.ebi.adfconverter.common.util.pool   
uk.ac.ebi.adfconverter.tools.checker   
uk.ac.ebi.adfconverter.usermode.gui.visualisation   
 

Uses of DataTable in uk.ac.ebi.adfconverter.common.data.tabulardata
 

Subclasses of DataTable in uk.ac.ebi.adfconverter.common.data.tabulardata
 class CorrectableDataTable
          Object representing a collection of dataRow
 

Uses of DataTable in uk.ac.ebi.adfconverter.common.tools.file.reader
 

Methods in uk.ac.ebi.adfconverter.common.tools.file.reader that return DataTable
abstract  DataTable DataFileReaderIntf.getData()
          Retrieves data from file
abstract  DataTable DataFileReaderIntf.getData(int fileFormat)
          Retrieves data from file in a given file format, specifying file format type
abstract  DataTable DataFileReaderIntf.getVerticalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape)
          Retrieves data from file with a specific character encoding in a vertical orientation of data
abstract  DataTable DataFileReaderIntf.getVerticalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int type)
          Retrieves data from file with a specific character encoding in a vertical orientation of data
abstract  DataTable DataFileReaderIntf.getHorizontalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape)
          Retrieves data from file with a specific character encoding in a vertical orientation of data
abstract  DataTable DataFileReaderIntf.getHorizontalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int type)
          Retrieves data from file with a specific character encoding in a horizontal orientation of data
abstract  DataTable DataFileReaderIntf.getData(java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int orientation, int type)
          Retrieves data from file with a specific character encoding
 DataTable DataFileReader.getData()
          Retrieves data from file
 DataTable DataFileReader.getData(int fileFormat)
          Retrieves data from file in a given file format, specifying file format type
 DataTable DataFileReader.getVerticalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape)
          Retrieves data from file with a specific character encoding in a vertical orientation of data
 DataTable DataFileReader.getVerticalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int type)
          Retrieves data from file with a specific character encoding in a vertical orientation of data
 DataTable DataFileReader.getHorizontalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape)
          Retrieves data from file with a specific character encoding in a vertical orientation of data
 DataTable DataFileReader.getHorizontalDataTable(java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int type)
          Retrieves data from file with a specific character encoding in a horizontal orientation of data
 DataTable DataFileReader.getData(java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int orientation, int type)
          Retrieves data from file with a specific character encoding
 DataTable DataFileReader.horizontalToVerticalTable(DataTable table)
          ConvertTable from table obtained from a file in the correct data orientation
 

Methods in uk.ac.ebi.adfconverter.common.tools.file.reader with parameters of type DataTable
 DataTable DataFileReader.horizontalToVerticalTable(DataTable table)
          ConvertTable from table obtained from a file in the correct data orientation
 

Uses of DataTable in uk.ac.ebi.adfconverter.common.tools.file.writer
 

Methods in uk.ac.ebi.adfconverter.common.tools.file.writer that return DataTable
 DataTable DataFileWriter.horizontalToVerticalTable(DataTable table)
          ConvertTable from a given table in the correct data orientation
 

Methods in uk.ac.ebi.adfconverter.common.tools.file.writer with parameters of type DataTable
 void DataFileWriter.writeData(DataTable table)
          Writes data in file
 void DataFileWriter.writeVerticalDataTable(DataTable table, java.lang.String enc, java.lang.String delimiter, java.lang.String escape)
          Write a data into a file with a specific character encoding in a vertical orientation of data
 void DataFileWriter.writeVerticalDataTable(DataTable table, java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int type)
          Write data into a file with a specific character encoding in a vertical orientation of data
 void DataFileWriter.writeHorizontalDataTable(DataTable table, java.lang.String enc, java.lang.String delimiter, java.lang.String escape)
          Writes data into a file with a specific character encoding in a Horizontal orientation of data
 void DataFileWriter.writeHorizontalDataTable(DataTable table, java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int type)
          Retrieves data from file with a specific character encoding in a horizontal orientation of data
 void DataFileWriter.writeData(DataTable table, java.lang.String enc, java.lang.String delimiter, java.lang.String escape, int orientation, int type)
          write data into file with a specific character encoding
 DataTable DataFileWriter.horizontalToVerticalTable(DataTable table)
          ConvertTable from a given table in the correct data orientation
 

Uses of DataTable in uk.ac.ebi.adfconverter.common.util.pool
 

Methods in uk.ac.ebi.adfconverter.common.util.pool that return DataTable
static DataTable DataTablePool.getItem()
          Retrieved a previous initialised/ created object from the pool.
 

Methods in uk.ac.ebi.adfconverter.common.util.pool with parameters of type DataTable
static void DataTablePool.returnItem(DataTable sb)
          Returns a no more needed object to the pool for reuse.
 

Uses of DataTable in uk.ac.ebi.adfconverter.tools.checker
 

Methods in uk.ac.ebi.adfconverter.tools.checker with parameters of type DataTable
 boolean OptimizedFileChecker.checkVerticalDataTable(DataTable dataTable, HeaderType header, boolean strictMode, boolean doCuration, boolean stepByStepMode)
          checks a vertical data table against a structure file The whole table is checked ( not row by row)
 CorrectableDataTable FileChecker.checkTableAndCurate(DataTable table, HeaderType headerStructure, boolean strictMode, boolean stepByStepMode)
          checks a data table against a structure file and returns the corrected/curated (if needed) data table
 boolean FileChecker.checkDataTable(DataTable dataTable, HeaderType header, boolean strictMode, boolean doCuration, boolean stepByStepMode)
          * checks a data table against a structure file
 boolean ADFChecker.CheckTables(DataTable headerTable, DataTable featureReporterTable, DataTable compositeSequenceTable, boolean strictMode, boolean stepByStepMode)
          Check an ADF.
 

Uses of DataTable in uk.ac.ebi.adfconverter.usermode.gui.visualisation
 

Methods in uk.ac.ebi.adfconverter.usermode.gui.visualisation with parameters of type DataTable
 void DataVisualisationTable.setData(DataTable table)
           
 void DataTableModel.setData(DataTable d)
          Describe setData method here.
 

Constructors in uk.ac.ebi.adfconverter.usermode.gui.visualisation with parameters of type DataTable
DataVisualisationTable(DataTable table)
           
DataTableModel(DataTable data)
          Creates a new TableModel instance.
 



European Bioinformatics InstituteMicroarray Informatics Team