Uses of Class
org.djutils.data.serialization.TextSerializationException
-
Packages that use TextSerializationException Package Description 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.serialization The serialization package takes care of (de)serializing data of different types to/from Strings.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 TextSerializationException in org.djutils.data.csv
Methods in org.djutils.data.csv that throw TextSerializationException 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.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 TextSerializationException in org.djutils.data.json
Methods in org.djutils.data.json that throw TextSerializationException 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.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 TextSerializationException in org.djutils.data.serialization
Methods in org.djutils.data.serialization that throw TextSerializationException Modifier and Type Method Description static TextSerializer<?>
TextSerializer. resolve(Class<?> valueClass)
Resolve the correct (de)serializer for the given class, and return an instance of the (de)serializer. -
Uses of TextSerializationException in org.djutils.data.xml
Methods in org.djutils.data.xml that throw TextSerializationException 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.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.
-