Package com.vividsolutions.jump.io
Interface JUMPReader
-
- All Known Implementing Classes:
AbstractJUMPReader
,DelegatingCompressedFileHandler
,FMEGMLReader
,GeoJSONReader
,GMLReader
,JMLReader
,ShapefileReader
,WKTReader
public interface JUMPReader
Interface for JUMPReader classes. Note: This is the old I/O API. Developers writing new I/O classes are encouraged to use the new API (com.vividsolutions.jump.io.datasource).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Exception>
getExceptions()
FeatureCollection
read(DriverProperties dp)
Read the specified file using the filename given by the "File" property and any other parameters.
-
-
-
Method Detail
-
read
FeatureCollection read(DriverProperties dp) throws Exception
Read the specified file using the filename given by the "File" property and any other parameters.- Throws:
Exception
-
getExceptions
Collection<Exception> getExceptions()
- Returns:
- exceptions collected during the reading process.
-
-