Uses of Class
prefuse.data.io.DataIOException

Packages that use DataIOException
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. 
 

Uses of DataIOException in prefuse.data.io
 

Methods in prefuse.data.io that throw DataIOException
 Graph AbstractGraphReader.readGraph(java.io.File f)
           
 Graph GraphReader.readGraph(java.io.File f)
          Read in a graph from the given File.
abstract  Graph AbstractGraphReader.readGraph(java.io.InputStream is)
           
 Graph GraphMLReader.readGraph(java.io.InputStream is)
           
 Graph GraphReader.readGraph(java.io.InputStream is)
          Read in a graph from the given InputStream.
 Graph TreeMLReader.readGraph(java.io.InputStream is)
           
 Graph AbstractGraphReader.readGraph(java.lang.String location)
           
 Graph GraphReader.readGraph(java.lang.String location)
          Read in a graph from the file at the given location.
 Graph AbstractGraphReader.readGraph(java.net.URL url)
           
 Graph GraphReader.readGraph(java.net.URL url)
          Read in a graph from the given URL.
 Table TableReader.readTable(java.io.File f)
          Read in a table from the given File.
 Table AbstractTableReader.readTable(java.io.File f)
           
 Table AbstractTextTableReader.readTable(java.io.InputStream is)
           
 Table TableReader.readTable(java.io.InputStream is)
          Read in a table from the given InputStream.
 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 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 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 GraphMLWriter.writeGraph(Graph graph, java.io.OutputStream os)
           
 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 TableWriter.writeTable(Table table, java.io.File f)
          Write a table to the given File.
 void AbstractTableWriter.writeTable(Table table, java.io.File f)
           
 void CSVTableWriter.writeTable(Table table, java.io.OutputStream os)
           
 void TableWriter.writeTable(Table table, java.io.OutputStream os)
          Write a table from the given OutputStream.
 void DelimitedTextTableWriter.writeTable(Table table, java.io.OutputStream os)
           
 void TableWriter.writeTable(Table table, java.lang.String filename)
          Write a table to the file with the given filename.
 void AbstractTableWriter.writeTable(Table table, java.lang.String filename)
           
 

Uses of DataIOException in prefuse.data.io.sql
 

Methods in prefuse.data.io.sql that throw DataIOException
 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 ? 2009 Regents of the University of California