V - the graph vertex typeE - the graph edge typeGraphExporter instead.@Deprecated
public interface GraphExporter<V,E>
| Modifier and Type | Method and Description |
|---|---|
default void |
exportGraph(Graph<V,E> g,
java.io.File file)
Deprecated.
Export a graph
|
default void |
exportGraph(Graph<V,E> g,
java.io.OutputStream out)
Deprecated.
Export a graph
|
void |
exportGraph(Graph<V,E> g,
java.io.Writer writer)
Deprecated.
Export a graph
|
default void exportGraph(Graph<V,E> g, java.io.OutputStream out) throws ExportException
g - the graph to exportout - the output streamExportException - in case any error occursvoid exportGraph(Graph<V,E> g, java.io.Writer writer) throws ExportException
g - the graph to exportwriter - the output writerExportException - in case any error occursdefault void exportGraph(Graph<V,E> g, java.io.File file) throws ExportException
g - the graph to exportfile - the file to write toExportException - in case any error occursCopyright © 2017. All Rights Reserved.