Package com.vividsolutions.jump.io
Class AbstractJUMPReader
- java.lang.Object
-
- com.vividsolutions.jump.io.AbstractJUMPReader
-
- All Implemented Interfaces:
JUMPReader
,TaskMonitorSupport
- Direct Known Subclasses:
DelegatingCompressedFileHandler
,FMEGMLReader
,GeoJSONReader
,ShapefileReader
,WKTReader
public abstract class AbstractJUMPReader extends Object implements JUMPReader, TaskMonitorSupport
Partial implementation of JUMPReader implementing getExceptions method.
-
-
Constructor Summary
Constructors Constructor Description AbstractJUMPReader()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
addException(Exception e)
Collection<Exception>
getExceptions()
TaskMonitor
getTaskMonitor()
abstract FeatureCollection
read(DriverProperties dp)
Read the specified file using the filename given by the "File" property and any other parameters.void
setTaskMonitor(TaskMonitor taskMonitor)
-
-
-
Method Detail
-
read
public abstract FeatureCollection read(DriverProperties dp) throws Exception
Read the specified file using the filename given by the "File" property and any other parameters.- Specified by:
read
in interfaceJUMPReader
- Throws:
Exception
-
addException
protected void addException(Exception e)
-
getExceptions
public Collection<Exception> getExceptions()
- Specified by:
getExceptions
in interfaceJUMPReader
- Returns:
- exceptions collected during the reading process.
-
setTaskMonitor
public void setTaskMonitor(TaskMonitor taskMonitor)
- Specified by:
setTaskMonitor
in interfaceTaskMonitorSupport
-
getTaskMonitor
public TaskMonitor getTaskMonitor()
- Specified by:
getTaskMonitor
in interfaceTaskMonitorSupport
-
-