Package org.geotools.api.data
Interface DelegatingFeatureReader<T extends FeatureType,F extends Feature>
-
- All Superinterfaces:
AutoCloseable
,Closeable
,FeatureReader<T,F>
- All Known Implementing Classes:
FilteringFeatureReader
,FilteringSimpleFeatureReader
,JDBCClosingFeatureReader
,JDBCJoiningFilteringFeatureReader
,MaxFeatureReader
,ReprojectFeatureReader
,ReTypeFeatureReader
public interface DelegatingFeatureReader<T extends FeatureType,F extends Feature> extends FeatureReader<T,F>
Interface for wrapping feature readers which delegate to another feature reader.- Since:
- 2.5
- Author:
- Justin Deoliveira, OpenGEO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureReader<T,F>
getDelegate()
-
Methods inherited from interface FeatureReader
close, getFeatureType, hasNext, next
-
-
-
-
Method Detail
-
getDelegate
FeatureReader<T,F> getDelegate()
- Returns:
- The delegate feature reader.
-
-