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.dir Directory DataStore 
org.geotools.data.directory   
org.geotools.data.gen   
org.geotools.data.jdbc   
org.geotools.data.memory   
org.geotools.data.mysql   
org.geotools.data.oracle   
org.geotools.data.postgis   
org.geotools.data.postgis.synch   
org.geotools.data.property   
org.geotools.data.shapefile   
org.geotools.data.shapefile.indexed   
org.geotools.data.store   
org.geotools.data.wfs.v1_1_0   
org.geotools.jdbc   
 

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<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> InProcessLockingManager.checkedWriter(FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> writer, Transaction transaction)
          Provides a wrapper on the provided writer that checks locks.
protected  FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.createFeatureWriter(java.lang.String typeName, Transaction transaction)
          Subclass should implement this to provide writing support.
 FeatureWriter<T,F> DelegatingFeatureWriter.getDelegate()
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractFileDataStore.getFeatureWriter(org.opengis.filter.Filter filter, Transaction transaction)
          Singular version, calls parent with getSchema().getTypeName()
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> FileDataStore.getFeatureWriter(org.opengis.filter.Filter filter, Transaction transaction)
           
protected  FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getFeatureWriter(java.lang.String typeName)
          Deprecated.  
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getFeatureWriter(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataStore.getFeatureWriter(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction)
          Access FeatureWriter for modification of existing DataStore contents.
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
          Access FeatureWriter for modification of the DataStore typeName.
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractFileDataStore.getFeatureWriter(Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> FileDataStore.getFeatureWriter(Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
          Aquire a FeatureWriter for adding new content to a FeatureType.
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> AbstractFileDataStore.getFeatureWriterAppend(Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> FileDataStore.getFeatureWriterAppend(Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> TransactionStateDiff.writer(java.lang.String typeName, org.opengis.filter.Filter filter)
          Convience Method for a Transaction based FeatureWriter
 

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

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

Uses of FeatureWriter in org.geotools.data.dir
 

Methods in org.geotools.data.dir that return FeatureWriter
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureWriter(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction)
          Deprecated.  
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
          Deprecated.  
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
          Deprecated.  
 

Uses of FeatureWriter in org.geotools.data.directory
 

Methods in org.geotools.data.directory that return FeatureWriter
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureWriter(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> DirectoryDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.gen
 

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

Uses of FeatureWriter in org.geotools.data.jdbc
 

Classes in org.geotools.data.jdbc that implement FeatureWriter
 class JDBCFeatureWriter
          Deprecated. scheduled for removal in 2.7, use classes in org.geotools.jdbc
 class JDBCPSFeatureWriter
          Deprecated. scheduled for removal in 2.7, use classes in org.geotools.jdbc
 class JDBCTextFeatureWriter
          Deprecated. scheduled for removal in 2.7, use classes in org.geotools.jdbc
 

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

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

Uses of FeatureWriter in org.geotools.data.memory
 

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

Uses of FeatureWriter in org.geotools.data.mysql
 

Classes in org.geotools.data.mysql that implement FeatureWriter
 class MySQLFeatureWriter
          Feature writer handling specific geometric function from MySQL 4.1 TODO This ought to handle MySQL 4.1's geometric datatypes, but it does not work.
 

Methods in org.geotools.data.mysql that return FeatureWriter
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> MySQLDataStore.getFeatureWriter(java.lang.String typeName)
          Utility method for getting a FeatureWriter for modifying existing features, using no feature filtering and auto-committing.
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> MySQLDataStore.getFeatureWriterAppend(java.lang.String typeName)
          Utility method for getting a FeatureWriter for adding new features, using auto-committing.
 

Uses of FeatureWriter in org.geotools.data.oracle
 

Classes in org.geotools.data.oracle that implement FeatureWriter
 class OracleFeatureWriter
          Subclasses JDBCTextFeatureWriter to issue Oracle transactions directly as sql text statements.
 

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<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getFeatureWriter(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PostgisDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
          Retrieve a FeatureWriter over entire dataset.
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PostgisDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
          Retrieve a FeatureWriter for creating new content.
protected  FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> VersionedPostgisDataStore.getFeatureWriterInternal(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction, boolean append)
          Returns either a standard feature writer, or a pure append feature writer
 

Uses of FeatureWriter in org.geotools.data.postgis.synch
 

Methods in org.geotools.data.postgis.synch that return FeatureWriter
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> SynchronizedPostgisDataStore.getFeatureWriter(java.lang.String typeName, org.opengis.filter.Filter filter, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> SynchronizedPostgisDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> SynchronizedPostgisDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
           
 

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<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> PropertyDataStore.getFeatureWriter(java.lang.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<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> ShapefileDataStore.createFeatureWriter(java.lang.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<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> IndexedShapefileDataStore.createFeatureWriter(java.lang.String typeName, Transaction transaction)
          Create a FeatureWriter for the given type name.
 FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> IndexedShapefileDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.store
 

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

Uses of FeatureWriter in org.geotools.jdbc
 

Classes in org.geotools.jdbc that implement FeatureWriter
 class JDBCClosingFeatureWriter
           
 class JDBCInsertFeatureWriter
           
 class JDBCUpdateFeatureWriter
           
 class JDBCUpdateInsertFeatureWriter
           
 

Methods in org.geotools.jdbc that return FeatureWriter
protected  FeatureWriter<org.opengis.feature.simple.SimpleFeatureType,org.opengis.feature.simple.SimpleFeature> JDBCFeatureStore.getWriterInternal(Query query, int flags)
           
 

Constructors in org.geotools.jdbc with parameters of type FeatureWriter
JDBCClosingFeatureWriter(FeatureWriter writer)
           
 



Copyright © 1996-2010 Geotools. All Rights Reserved.