Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
TableReader.java
package prefuse.data.io;

import java.io.File;
import java.io.InputStream;
import java.net.URL;

import prefuse.data.Table;

/**
 * Interface for classes that read in Table data from a particular file format.
 * 
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public interface TableReader {

    /**
     * Read in a table from the file at the given location. Though
     * not required by this interface, the String is typically resolved
     * using the {@link prefuse.util.io.IOLib#streamFromString(String)} method,
     * allowing URLs, classpath references, and files on the file system
     * to be accessed.
     * @param location the location to read the table from
     * @return the loaded Table
     * @throws DataIOException
     * @see prefuse.util.io.IOLib#streamFromString(String)
     */
    public Table readTable(String location) throws DataIOException;
    
    /**
     * Read in a table from the given URL.
     * @param url the url to read the graph from
     * @return the loaded Table
     * @throws DataIOException
     */
    public Table readTable(URL url) throws DataIOException;
    
    /**
     * Read in a table from the given File.
     * @param f the file to read the table from
     * @return the loaded Table
     * @throws DataIOException
     */
    public Table readTable(File f) throws DataIOException;
    
    /**
     * Read in a table from the given InputStream.
     * @param is the InputStream to read the table from
     * @return the loaded Table
     * @throws DataIOException
     */
    public Table readTable(InputStream is) throws DataIOException;
    
} // end of interface TableReader
back to top