Package | Description |
---|---|
org.jgrapht.io |
Importers/Exporters for various graph formats.
|
Modifier and Type | Method and Description |
---|---|
CSVFormat |
CSVImporter.getFormat()
Get the format that the importer is using.
|
CSVFormat |
CSVExporter.getFormat()
Get the format of the exporter
|
static CSVFormat |
CSVFormat.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVFormat[] |
CSVFormat.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
CSVImporter.setFormat(CSVFormat format)
Set the format of the importer
|
void |
CSVExporter.setFormat(CSVFormat format)
Set the format of the exporter
|
Constructor and Description |
---|
CSVExporter(ComponentNameProvider<V> vertexIDProvider,
CSVFormat format,
char delimiter)
Constructs a new CSVExporter with the given ID providers and format.
|
CSVExporter(CSVFormat format)
Creates a new CSVExporter with integer name providers for the vertices.
|
CSVExporter(CSVFormat format,
char delimiter)
Creates a new CSVExporter with integer name providers for the vertices.
|
CSVImporter(VertexProvider<V> vertexProvider,
EdgeProvider<V,E> edgeProvider,
CSVFormat format)
Constructs a new importer.
|
CSVImporter(VertexProvider<V> vertexProvider,
EdgeProvider<V,E> edgeProvider,
CSVFormat format,
char delimiter)
Constructs a new importer.
|
Copyright © 2017. All rights reserved.