Uses of Class
org.jgrapht.nio.csv.CSVFormat
-
Packages that use CSVFormat Package Description org.jgrapht.nio.csv CSV importers/exporters -
-
Uses of CSVFormat in org.jgrapht.nio.csv
Methods in org.jgrapht.nio.csv that return CSVFormat Modifier and Type Method Description CSVFormat
CSVEventDrivenImporter. getFormat()
Get the format that the importer is using.CSVFormat
CSVExporter. getFormat()
Get the format of the exporterCSVFormat
CSVImporter. getFormat()
Get the format that the importer is using.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.Methods in org.jgrapht.nio.csv with parameters of type CSVFormat Modifier and Type Method Description void
CSVEventDrivenImporter. setFormat(CSVFormat format)
Set the format of the importervoid
CSVExporter. setFormat(CSVFormat format)
Set the format of the exportervoid
CSVImporter. setFormat(CSVFormat format)
Set the format of the importerConstructors in org.jgrapht.nio.csv with parameters of type CSVFormat Constructor Description CSVEventDrivenImporter(CSVFormat format)
Constructs a new importer.CSVEventDrivenImporter(CSVFormat format, char delimiter)
Constructs a new importer.CSVExporter(Function<V,String> 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 id providers for the vertices.CSVExporter(CSVFormat format, char delimiter)
Creates a new CSVExporter with integer id providers for the vertices.CSVImporter(CSVFormat format)
Constructs a new importer.CSVImporter(CSVFormat format, char delimiter)
Constructs a new importer.
-