Interface GraphImporter<V,​E>

    • Method Detail

      • importGraph

        default void importGraph​(Graph<V,​E> g,
                                 InputStream in)
        Import a graph from the given InputStream.

        It is the callers responsibility to ensure the InputStream is closed after this method returned.

        Parameters:
        g - the graph
        in - the input stream
        Throws:
        ImportException - in case any error occurs, such as I/O or parse error
      • importGraph

        void importGraph​(Graph<V,​E> g,
                         Reader in)
        Import a graph using the given Reader.

        It is the callers responsibility to ensure the Reader is closed after this method returned.

        Parameters:
        g - the graph
        in - the input reader
        Throws:
        ImportException - in case any error occurs, such as I/O or parse error
      • importGraph

        default void importGraph​(Graph<V,​E> g,
                                 File file)
        Import a graph from the given File.
        Parameters:
        g - the graph
        file - the file to read from
        Throws:
        ImportException - in case any error occurs, such as I/O or parse error