prefuse.data.io |
Input/output classes for reading and writing data from formatted files.
|
Java Source File Name | Type | Comment |
AbstractGraphReader.java | Class | Abstract base class implementation of the GraphReader interface. |
AbstractGraphWriter.java | Class | Abstract base class implementation of the GraphWriter interface. |
AbstractTableReader.java | Class | Abstract base class implementation of the TableReader interface. |
AbstractTableWriter.java | Class | Abstract base class implementation of the TableWriter interface. |
AbstractTextTableReader.java | Class | Abstract base class for TableReader instances that read in a table
from a textual data file. |
CSVTableReader.java | Class | TableReader for Comma Separated Value (CSV) files. |
CSVTableWriter.java | Class | TableWriter that writes out a text table in the comma-separated-values
format. |
DataIOException.java | Class | Exception indicating an error occurred during reading or writing data. |
DelimitedTextTableReader.java | Class | TableReader for delimited text files, such as tab-delimited or
pipe-delimited text files. |
DelimitedTextTableWriter.java | Class | TableWriter that writes out a delimited text table, using a designated
character string to demarcate data columns. |
FixedWidthTextTableReader.java | Class | TableReader for fixed-width text files, that encode one row of table
data per line use a fixed number of characters for each data column. |
FixedWidthTextTableSchema.java | Class | Helper class that stores character length counts for each column in
a fixed width text table. |
FixedWidthTextTableWriter.java | Class | TableWriter for fixed-width text files, that encode one row of table
data per line use a fixed number of characters for each data column.
Writing such tables requires use of a schema description that describes
the fixed-widths for each individual column.
The
prefuse.data.io.FixedWidthTextTableSchema class provides
this functionality. |
GraphMLReader.java | Class | GraphReader instance that reads in graph file formatted using the
GraphML file format. |
GraphMLWriter.java | Class | GraphWriter instance that writes a graph file formatted using the
GraphML file format. |
GraphReader.java | Interface | nterface for classes that read in Graph or Tree data from a particular
file format. |
GraphWriter.java | Interface | Interface for classes that write Graph data to a particular file format. |
TableReader.java | Interface | Interface for classes that read in Table data from a particular file format. |
TableReadListener.java | Interface | Callback interface used by AbstractTextTableReader instances to be
used when a table value is encountered in parsing. |
TableWriter.java | Interface | Interface for classes that write Table data to a particular file format. |
TreeMLReader.java | Class | GraphReader instance that reads in tree-structured data in the
XML-based TreeML format. |
TreeMLWriter.java | Class | GraphWriter instance that writes a tree file formatted using the
TreeML file format. |