Uses of Interface
org.djutils.data.DataTable
- 
Packages that use DataTable Package Description org.djutils.data Data collection utilities.org.djutils.data.csv The csv package takes care of reading and writing of data in csv / tsv format to/from files or streams.org.djutils.data.json The json package takes care of reading and writing of data in json format to/from files or streams.org.djutils.data.xml The xml package takes care of reading and writing of data in xml format to/from files or streams. - 
- 
Uses of DataTable in org.djutils.data
Classes in org.djutils.data that implement DataTable Modifier and Type Class Description classAbstractDataTableAbstractTableimplementation taking care of the columns.classListDataTableList implementation ofTable. - 
Uses of DataTable in org.djutils.data.csv
Methods in org.djutils.data.csv that return DataTable Modifier and Type Method Description static DataTableCSVData. readData(Reader reader, Reader metaReader)Read the data from the CSV-file into the data table.static DataTableCSVData. readData(Reader reader, Reader metaReader, char separator, char quotechar, char escapechar, String lineEnd)Read the data from the CSV-file into the data table.static DataTableCSVData. readData(String filename, String metaFilename)Read the data from the CSV-file into the data table.static DataTableTSVData. readData(Reader reader, Reader metaReader)Read the data from the TSV-file into the data table.static DataTableTSVData. readData(String filename, String metaFilename)Read the data from the TSV-file into the data table.Methods in org.djutils.data.csv with parameters of type DataTable Modifier and Type Method Description static voidCSVData. writeData(Writer writer, Writer metaWriter, DataTable dataTable)Write the data from the data table in CSV format.static voidCSVData. writeData(Writer writer, Writer metaWriter, DataTable dataTable, char separator, char quotechar, char escapechar, String lineEnd)Write the data from the data table in CSV format.static voidCSVData. writeData(String filename, String metaFilename, DataTable dataTable)Write the data from the data table in CSV format.static voidTSVData. writeData(Writer writer, Writer metaWriter, DataTable dataTable)Write the data from the data table in TSV format.static voidTSVData. writeData(String filename, String metaFilename, DataTable dataTable)Write the data from the data table in TSV format. - 
Uses of DataTable in org.djutils.data.json
Methods in org.djutils.data.json that return DataTable Modifier and Type Method Description static DataTableJSONData. readData(Reader reader)Read the data from the csv-file into the data table.static DataTableJSONData. readData(String filename)Read the data from the csv-file into the data table.Methods in org.djutils.data.json with parameters of type DataTable Modifier and Type Method Description static voidJSONData. writeData(Writer writer, DataTable dataTable)Write the data from the data table in JSON format.static voidJSONData. writeData(String filename, DataTable dataTable)Write the data from the data table in JSON format. - 
Uses of DataTable in org.djutils.data.xml
Methods in org.djutils.data.xml that return DataTable Modifier and Type Method Description static DataTableXMLData. readData(Reader reader)Read the data from the XML-file into the data table.static DataTableXMLData. readData(String filename)Read the data from the XML-file into the data table.Methods in org.djutils.data.xml with parameters of type DataTable Modifier and Type Method Description static voidXMLData. writeData(Writer writer, DataTable dataTable)Write the data from the data table in XML format.static voidXMLData. writeData(String filename, DataTable dataTable)Write the data from the data table in XML format. 
 -