Package | Description |
---|---|
prefuse.data.io |
Input/output classes for reading and writing data from formatted files.
|
prefuse.data.io.sql |
Input libraries for loading data from SQL databases.
|
Modifier and Type | Method and Description |
---|---|
static FixedWidthTextTableSchema |
FixedWidthTextTableSchema.load(java.lang.String loc)
Loads a schema description from the given location.
|
Graph |
GraphReader.readGraph(java.io.File f)
Read in a graph from the given File.
|
Graph |
AbstractGraphReader.readGraph(java.io.File f) |
Graph |
TreeMLReader.readGraph(java.io.InputStream is) |
Graph |
GraphReader.readGraph(java.io.InputStream is)
Read in a graph from the given InputStream.
|
abstract Graph |
AbstractGraphReader.readGraph(java.io.InputStream is) |
Graph |
GraphMLReader.readGraph(java.io.InputStream is) |
Graph |
GraphReader.readGraph(java.lang.String location)
Read in a graph from the file at the given location.
|
Graph |
AbstractGraphReader.readGraph(java.lang.String location) |
Graph |
GraphReader.readGraph(java.net.URL url)
Read in a graph from the given URL.
|
Graph |
AbstractGraphReader.readGraph(java.net.URL url) |
Table |
TableReader.readTable(java.io.File f)
Read in a table from the given File.
|
Table |
AbstractTableReader.readTable(java.io.File f) |
Table |
TableReader.readTable(java.io.InputStream is)
Read in a table from the given InputStream.
|
Table |
AbstractTextTableReader.readTable(java.io.InputStream is) |
Table |
TableReader.readTable(java.lang.String location)
Read in a table from the file at the given location.
|
Table |
AbstractTableReader.readTable(java.lang.String location) |
Table |
TableReader.readTable(java.net.URL url)
Read in a table from the given URL.
|
Table |
AbstractTableReader.readTable(java.net.URL url) |
void |
FixedWidthTextTableSchema.write(java.io.OutputStream os)
Writes this schema description to the given output stream.
|
void |
FixedWidthTextTableSchema.write(java.lang.String filename)
Writes this schema description to a file with the given name.
|
void |
AbstractGraphWriter.writeGraph(Graph graph,
java.io.File f) |
void |
GraphWriter.writeGraph(Graph graph,
java.io.File f)
Write a graph to the given File.
|
void |
GraphMLWriter.writeGraph(Graph graph,
java.io.OutputStream os) |
void |
TreeMLWriter.writeGraph(Graph graph,
java.io.OutputStream os) |
void |
GraphWriter.writeGraph(Graph graph,
java.io.OutputStream os)
Write a graph from the given OutputStream.
|
void |
AbstractGraphWriter.writeGraph(Graph graph,
java.lang.String filename) |
void |
GraphWriter.writeGraph(Graph graph,
java.lang.String filename)
Write a graph to the file with the given filename.
|
void |
AbstractTableWriter.writeTable(Table table,
java.io.File f) |
void |
TableWriter.writeTable(Table table,
java.io.File f)
Write a table to the given File.
|
void |
DelimitedTextTableWriter.writeTable(Table table,
java.io.OutputStream os) |
void |
CSVTableWriter.writeTable(Table table,
java.io.OutputStream os) |
void |
FixedWidthTextTableWriter.writeTable(Table table,
java.io.OutputStream os) |
void |
TableWriter.writeTable(Table table,
java.io.OutputStream os)
Write a table from the given OutputStream.
|
void |
AbstractTableWriter.writeTable(Table table,
java.lang.String filename) |
void |
TableWriter.writeTable(Table table,
java.lang.String filename)
Write a table to the file with the given filename.
|
Constructor and Description |
---|
FixedWidthTextTableReader(java.lang.String location)
Creates a new FixedWidthTextTableReader using the schema at
the given location.
|
FixedWidthTextTableWriter(java.lang.String location)
Creates a new FixedWidthTextTableWriter using the schema at
the given location.
|
Modifier and Type | Method and Description |
---|---|
Table |
DatabaseDataSource.getData(java.lang.String query)
Executes a query and returns the results in a Table instance.
|
Table |
DatabaseDataSource.getData(java.lang.String query,
java.lang.String keyField)
Executes a query and returns the results in a Table instance.
|
Table |
DatabaseDataSource.getData(Table t,
java.lang.String query)
Executes a query and returns the results in a Table instance.
|
Table |
DatabaseDataSource.getData(Table t,
java.lang.String query,
java.lang.String keyField)
Executes a query and returns the results in a Table instance.
|
Table |
DatabaseDataSource.getData(Table t,
java.lang.String query,
java.lang.String keyField,
java.lang.Object lock)
Executes a query and returns the results in a Table instance.
|
protected Table |
DatabaseDataSource.process(Table t,
java.sql.ResultSet rset,
java.lang.String key,
java.lang.Object lock)
Process the results of a SQL query, putting retrieved data into a
Table instance.
|
Copyright ? 2013 Regents of the University of California