Uses of Interface
org.geotools.data.FeatureWriter

Packages that use FeatureWriter
org.geotools.data Defines the DataStoreAPI via which all data is imported or exported. 
org.geotools.data.db2   
org.geotools.data.gen   
org.geotools.data.jdbc   
org.geotools.data.memory   
org.geotools.data.postgis   
org.geotools.data.property   
org.geotools.data.shapefile   
org.geotools.data.shapefile.indexed   
org.geotools.data.store   
org.geotools.data.wfs.v1_1_0   
 

Uses of FeatureWriter in org.geotools.data
 

Subinterfaces of FeatureWriter in org.geotools.data
 interface DelegatingFeatureWriter<T extends FeatureType,F extends Feature>
          Interface for wrapping feature writers which delegate to another feature writer.
 

Classes in org.geotools.data that implement FeatureWriter
 class DiffFeatureWriter
          A FeatureWriter that captures modifications against a FeatureReader.
 class EmptyFeatureWriter
          Represents an Empty, Typed, FeatureWriter.
 class FilteringFeatureWriter
          Filtering is performed on this hasNext() method.
 

Methods in org.geotools.data that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> InProcessLockingManager.checkedWriter(FeatureWriter<SimpleFeatureType,SimpleFeature> writer, Transaction transaction)
          Provides a wrapper on the provided writer that checks locks.
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.createFeatureWriter(String typeName, Transaction transaction)
          Subclass should implement this to provide writing support.
 FeatureWriter<T,F> DelegatingFeatureWriter.getDelegate()
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractFileDataStore.getFeatureWriter(Filter filter, Transaction transaction)
          Singular version, calls parent with getSchema().getTypeName()
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriter(String typeName)
          Deprecated.  
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
          Access FeatureWriter for modification of existing DataStore contents.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriter(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStore.getFeatureWriter(String typeName, Transaction transaction)
          Access FeatureWriter for modification of the DataStore typeName.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractFileDataStore.getFeatureWriter(Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
          Aquire a FeatureWriter for adding new content to a FeatureType.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractFileDataStore.getFeatureWriterAppend(Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> TransactionStateDiff.writer(String typeName, Filter filter)
          Convience Method for a Transaction based FeatureWriter Constructs a DiffFeatureWriter that works against this Transaction.
 

Methods in org.geotools.data with parameters of type FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> InProcessLockingManager.checkedWriter(FeatureWriter<SimpleFeatureType,SimpleFeature> writer, Transaction transaction)
          Provides a wrapper on the provided writer that checks locks.
protected  int DataTestCase.count(FeatureWriter<SimpleFeatureType,SimpleFeature> writer)
          Counts the number of Features in the specified writer.
 

Constructors in org.geotools.data with parameters of type FeatureWriter
FilteringFeatureWriter(FeatureWriter<SimpleFeatureType,SimpleFeature> writer, Filter filter)
           
 

Uses of FeatureWriter in org.geotools.data.db2
 

Classes in org.geotools.data.db2 that implement FeatureWriter
 class DB2FeatureWriter
          DOCUMENT ME!
 

Uses of FeatureWriter in org.geotools.data.gen
 

Methods in org.geotools.data.gen that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> PreGeneralizedDataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> PreGeneralizedDataStore.getFeatureWriter(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> PreGeneralizedDataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.jdbc
 

Classes in org.geotools.data.jdbc that implement FeatureWriter
 class JDBCFeatureWriter
          JDBCDataStore implementation of the FeatureWriter interface
 class JDBCPSFeatureWriter
          An abstract class that uses prepared statements to insert, update and delete features from the database.
 class JDBCTextFeatureWriter
          An abstract class that uses sql statements to insert, update and delete features from the database.
 

Methods in org.geotools.data.jdbc that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> JDBC1DataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
          Acquire FeatureWriter for modification of contents specifed by filter.
 FeatureWriter<SimpleFeatureType,SimpleFeature> JDBC1DataStore.getFeatureWriter(String typeName, Transaction transaction)
          Retrieve a FeatureWriter over entire dataset.
 FeatureWriter<SimpleFeatureType,SimpleFeature> JDBC1DataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
          Retrieve a FeatureWriter for creating new content.
 

Methods in org.geotools.data.jdbc with parameters of type FeatureWriter
protected  void JDBCFeatureStore.modifyFeatures(AttributeDescriptor[] type, Object[] value, FeatureWriter<SimpleFeatureType,SimpleFeature> writer)
           
 

Uses of FeatureWriter in org.geotools.data.memory
 

Methods in org.geotools.data.memory that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> MemoryDataStore.createFeatureWriter(String typeName, Transaction transaction)
          Provides FeatureWriter over the entire contents of typeName.
 

Uses of FeatureWriter in org.geotools.data.postgis
 

Classes in org.geotools.data.postgis that implement FeatureWriter
 class PostgisFeatureWriter
          An implementation of FeatureWriter that will work over a result set.
 

Methods in org.geotools.data.postgis that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> PostgisDataStore.getFeatureWriter(String typeName, Transaction transaction)
          Retrieve a FeatureWriter over entire dataset.
 FeatureWriter<SimpleFeatureType,SimpleFeature> PostgisDataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
          Retrieve a FeatureWriter for creating new content.
 

Uses of FeatureWriter in org.geotools.data.property
 

Classes in org.geotools.data.property that implement FeatureWriter
 class PropertyFeatureWriter
           
 

Methods in org.geotools.data.property that return FeatureWriter
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> PropertyDataStore.getFeatureWriter(String typeName)
           
 

Uses of FeatureWriter in org.geotools.data.shapefile
 

Classes in org.geotools.data.shapefile that implement FeatureWriter
 class ShapefileFeatureWriter
          A FeatureWriter for ShapefileDataStore.
 

Methods in org.geotools.data.shapefile that return FeatureWriter
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> ShapefileDataStore.createFeatureWriter(String typeName, Transaction transaction)
          Create a FeatureWriter for the given type name.
 

Uses of FeatureWriter in org.geotools.data.shapefile.indexed
 

Methods in org.geotools.data.shapefile.indexed that return FeatureWriter
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> IndexedShapefileDataStore.createFeatureWriter(String typeName, Transaction transaction)
          Create a FeatureWriter for the given type name.
 FeatureWriter<SimpleFeatureType,SimpleFeature> IndexedShapefileDataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.store
 

Methods in org.geotools.data.store that return FeatureWriter
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> ActiveTypeEntry.createAppend(Transaction transaction)
          It would be great to kill this method, and add a "skipToEnd" method to featureWriter?
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> ActiveTypeEntry.createWriter()
          Low level feature writer access.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentDataStore.getFeatureWriter(String typeName, Filter filter, Transaction tx)
          Returns a feature writer for the specified query and transaction.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore2.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentDataStore.getFeatureWriter(String typeName, Transaction tx)
          Returns a feature writer for the specified type name and transaction.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore2.getFeatureWriter(String typeName, Transaction transaction)
          TODO summary sentence for getFeatureWriter ...
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentDataStore.getFeatureWriterAppend(String typeName, Transaction tx)
          Returns an appending feature writer for the specified type name and transaction.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore2.getFeatureWriterAppend(String typeName, Transaction transaction)
          FeatureWriter setup to add new content.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentFeatureStore.getWriter(Filter filter)
          Returns a writer over features specified by a filter.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentFeatureStore.getWriter(Filter filter, int flags)
          Returns a writer over features specified by a filter.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentFeatureStore.getWriter(Query query)
          Returns a writer over features specified by a query.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentFeatureStore.getWriter(Query query, int flags)
          Returns a writer over features specified by a query.
protected abstract  FeatureWriter<SimpleFeatureType,SimpleFeature> ContentFeatureStore.getWriterInternal(Query query, int flags)
          Subclass method for returning a native writer from the datastore.
protected  FeatureWriter<SimpleFeatureType,SimpleFeature> DataFeatureCollection.writer()
          Subclass may provide an implementation of this method to indicate that read/write support is provided.
 FeatureWriter<SimpleFeatureType,SimpleFeature> TypeDiffState.writer()
          Convience Method for a Transaction based FeatureWriter Constructs a DiffFeatureWriter that works against this Transaction.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ActiveTypeEntry.writer(Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.wfs.v1_1_0
 

Methods in org.geotools.data.wfs.v1_1_0 that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> WFS_1_1_0_DataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
          Not supported.
 FeatureWriter<SimpleFeatureType,SimpleFeature> WFS_1_1_0_DataStore.getFeatureWriter(String typeName, Transaction transaction)
          Not supported.
 FeatureWriter<SimpleFeatureType,SimpleFeature> WFS_1_1_0_DataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
          Not supported.
 



Copyright © 1996-2009 Geotools. All Rights Reserved.