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 class
AbstractDataTable
AbstractTable
implementation taking care of the columns.class
ListDataTable
List 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 DataTable
CSVData. readData(Reader reader, Reader metaReader)
Read the data from the CSV-file into the data table.static DataTable
CSVData. 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 DataTable
CSVData. readData(String filename, String metaFilename)
Read the data from the CSV-file into the data table.static DataTable
TSVData. readData(Reader reader, Reader metaReader)
Read the data from the TSV-file into the data table.static DataTable
TSVData. 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 void
CSVData. writeData(Writer writer, Writer metaWriter, DataTable dataTable)
Write the data from the data table in CSV format.static void
CSVData. 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 void
CSVData. writeData(String filename, String metaFilename, DataTable dataTable)
Write the data from the data table in CSV format.static void
TSVData. writeData(Writer writer, Writer metaWriter, DataTable dataTable)
Write the data from the data table in TSV format.static void
TSVData. 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 DataTable
JSONData. readData(Reader reader)
Read the data from the csv-file into the data table.static DataTable
JSONData. 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 void
JSONData. writeData(Writer writer, DataTable dataTable)
Write the data from the data table in JSON format.static void
JSONData. 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 DataTable
XMLData. readData(Reader reader)
Read the data from the XML-file into the data table.static DataTable
XMLData. 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 void
XMLData. writeData(Writer writer, DataTable dataTable)
Write the data from the data table in XML format.static void
XMLData. writeData(String filename, DataTable dataTable)
Write the data from the data table in XML format.
-