Package com.algo.export
Class TrivialGraphFormatExport
- java.lang.Object
-
- com.algo.export.ExportFilter
-
- com.algo.export.TrivialGraphFormatExport
-
public class TrivialGraphFormatExport extends ExportFilter
-
-
Constructor Summary
Constructors Constructor Description TrivialGraphFormatExport()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
export(Structure structure, java.io.OutputStreamWriter stream, ExportFilterParameters params)
static java.lang.String
exportToString(Structure structure)
java.util.Map<java.lang.String,Edge>
getEdgeNames(Structure structure, ExportFilterParameters params)
java.util.Map<java.lang.String,Vertex>
getVertexNames(Structure structure, ExportFilterParameters params)
-
Methods inherited from class com.algo.export.ExportFilter
exportGraph, exportGraph, getDescription, getParameters
-
-
-
-
Method Detail
-
exportToString
public static java.lang.String exportToString(Structure structure)
-
export
public void export(Structure structure, java.io.OutputStreamWriter stream, ExportFilterParameters params) throws java.lang.Exception
- Throws:
java.lang.Exception
-
getVertexNames
public java.util.Map<java.lang.String,Vertex> getVertexNames(Structure structure, ExportFilterParameters params) throws java.lang.Exception
- Overrides:
getVertexNames
in classExportFilter
- Throws:
java.lang.Exception
-
getEdgeNames
public java.util.Map<java.lang.String,Edge> getEdgeNames(Structure structure, ExportFilterParameters params) throws java.lang.Exception
- Overrides:
getEdgeNames
in classExportFilter
- Throws:
java.lang.Exception
-
-