Uses of Class
org.openstreetmap.josm.gui.io.importexport.FileExporter
-
Packages that use FileExporter Package Description org.openstreetmap.josm.actions Provides the classes for JOSM user actions.org.openstreetmap.josm.gui.io.importexport Provides GUI classes for handling file import/export operations. -
-
Uses of FileExporter in org.openstreetmap.josm.actions
Fields in org.openstreetmap.josm.actions with type parameters of type FileExporter Modifier and Type Field Description private static java.util.ArrayList<FileExporter>
ExtensionFileFilter. exporters
List of supported formats for export.Methods in org.openstreetmap.josm.actions that return types with arguments of type FileExporter Modifier and Type Method Description static java.util.List<FileExporter>
ExtensionFileFilter. getExporters()
Returns the list of file exporters.Methods in org.openstreetmap.josm.actions with parameters of type FileExporter Modifier and Type Method Description static void
ExtensionFileFilter. addExporter(FileExporter exporter)
Adds a new file exporter at the end of the global list.static void
ExtensionFileFilter. addExporterFirst(FileExporter exporter)
Adds a new file exporter at the beginning of the global list. -
Uses of FileExporter in org.openstreetmap.josm.gui.io.importexport
Subclasses of FileExporter in org.openstreetmap.josm.gui.io.importexport Modifier and Type Class Description class
GeoJSONExporter
Exporter to write map data to a GeoJSON file.class
GpxExporter
Exports data to a .gpx file.class
NoteExporter
Exporter to write note data to an XML fileclass
OsmBzip2Exporter
OSM data exporter that compresses it in Bzip2 format.class
OsmExporter
Exports data to an .osm file.class
OsmGzipExporter
OSM data exporter that compresses it in GZip format.class
OsmXzExporter
OSM data exporter that compresses it in XZ format.class
ValidatorErrorExporter
Exporter to write validator errors to an XML file.class
WMSLayerExporter
Export a WMS layer to a serialized binary file that can be imported later viaWMSLayerImporter
.
-