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.lang.String location)
           
 Graph AbstractGraphReader.readGraph(java.net.URL url)
           
 Graph AbstractGraphReader.readGraph(java.io.File f)
           
abstract  Graph AbstractGraphReader.readGraph(java.io.InputStream is)
           
 Graph GraphReader.readGraph(java.lang.String location)
          Read in a graph from the file at the given location.
 Graph GraphReader.readGraph(java.net.URL url)
          Read in a graph from the given URL.
 Graph GraphReader.readGraph(java.io.File f)
          Read in a graph from the given File.
 Graph GraphReader.readGraph(java.io.InputStream is)
          Read in a graph from the given InputStream.
 void AbstractGraphWriter.writeGraph(Graph graph, java.lang.String filename)
           
 void AbstractGraphWriter.writeGraph(Graph graph, java.io.File f)
           
 void GraphWriter.writeGraph(Graph graph, java.lang.String filename)
          Write a graph to the file with the given filename.
 void GraphWriter.writeGraph(Graph graph, java.io.File f)
          Write a graph to the given File.
 void GraphWriter.writeGraph(Graph graph, java.io.OutputStream os)
          Write a graph from the given OutputStream.
 Table AbstractTableReader.readTable(java.lang.String location)
           
 Table AbstractTableReader.readTable(java.net.URL url)
           
 Table AbstractTableReader.readTable(java.io.File f)
           
 Table TableReader.readTable(java.lang.String location)
          Read in a table from the file at the given location.
 Table TableReader.readTable(java.net.URL url)
          Read in a table from the given URL.
 Table TableReader.readTable(java.io.File f)
          Read in a table from the given File.
 Table TableReader.readTable(java.io.InputStream is)
          Read in a table from the given InputStream.
 void AbstractTableWriter.writeTable(Table table, java.lang.String filename)
           
 void AbstractTableWriter.writeTable(Table table, java.io.File f)
           
 void TableWriter.writeTable(Table table, java.lang.String filename)
          Write a table to the file with the given filename.
 void TableWriter.writeTable(Table table, java.io.File f)
          Write a table to the given File.
 void TableWriter.writeTable(Table table, java.io.OutputStream os)
          Write a table from the given OutputStream.
 Table AbstractTextTableReader.readTable(java.io.InputStream is)
           
 void CSVTableWriter.writeTable(Table table, java.io.OutputStream os)
           
 void DelimitedTextTableWriter.writeTable(Table table, java.io.OutputStream os)
           
 void FixedWidthTextTableSchema.write(java.lang.String filename)
          Writes this schema description to a file with the given name.
 void FixedWidthTextTableSchema.write(java.io.OutputStream os)
          Writes this schema description to the given output stream.
static FixedWidthTextTableSchema FixedWidthTextTableSchema.load(java.lang.String loc)
          Loads a schema description from the given location.
 void FixedWidthTextTableWriter.writeTable(Table table, java.io.OutputStream os)
           
 Graph GraphMLReader.readGraph(java.io.InputStream is)
           
 void GraphMLWriter.writeGraph(Graph graph, java.io.OutputStream os)
           
 Graph TreeMLReader.readGraph(java.io.InputStream is)
           
 void TreeMLWriter.writeGraph(Graph graph, java.io.OutputStream os)
           
 

Constructors in prefuse.data.io that throw DataIOException
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.
 

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 ? 2007 Regents of the University of California