Package org.geotools.api.data
Interface DelegatingFeatureWriter<T extends FeatureType,F extends Feature>
-
- All Superinterfaces:
AutoCloseable
,Closeable
,FeatureWriter<T,F>
- All Known Subinterfaces:
DelegatingSimpleFeatureWriter
public interface DelegatingFeatureWriter<T extends FeatureType,F extends Feature> extends FeatureWriter<T,F>
Interface for wrapping feature writers which delegate to another feature writer.- Since:
- 2.5
- Author:
- Justin Deoliveira, OpenGEO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureWriter<T,F>
getDelegate()
-
Methods inherited from interface FeatureWriter
close, getFeatureType, hasNext, next, remove, write
-
-
-
-
Method Detail
-
getDelegate
FeatureWriter<T,F> getDelegate()
- Returns:
- The delegate writer.
-
-