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.directory   
org.geotools.data.gen   
org.geotools.data.memory   
org.geotools.data.property   
org.geotools.data.shapefile   
org.geotools.data.simple   
org.geotools.data.store   
org.geotools.data.transform   
org.geotools.data.wfs.v1_1_0   
org.geotools.gce.imagemosaic.catalog.oracle   
org.geotools.geopkg   
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<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()
 FeatureWriter<SimpleFeatureType,SimpleFeature> FileDataStore.getFeatureWriter(Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
          Gets a FeatureWriter to modify features in this DataStore.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriter(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStore.getFeatureWriter(String typeName, Transaction transaction)
          Gets a FeatureWriter to modify features in this DataStore.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractFileDataStore.getFeatureWriter(Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> FileDataStore.getFeatureWriter(Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractDataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStore.getFeatureWriterAppend(String typeName, Transaction transaction)
          Gets a FeatureWriter that can add new features to the DataStore.
 FeatureWriter<SimpleFeatureType,SimpleFeature> AbstractFileDataStore.getFeatureWriterAppend(Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> FileDataStore.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.directory
 

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

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.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.property
 

Classes in org.geotools.data.property that implement FeatureWriter
 class PropertyFeatureWriter
          Uses PropertyAttributeWriter to generate a property file on disk.
 

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

Uses of FeatureWriter in org.geotools.data.shapefile
 

Methods in org.geotools.data.shapefile that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> ShapefileDataStore.getFeatureWriter(Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> ShapefileDataStore.getFeatureWriter(Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> ShapefileDataStore.getFeatureWriterAppend(Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.simple
 

Subinterfaces of FeatureWriter in org.geotools.data.simple
 interface DelegatingSimpleFeatureWriter
           
 interface SimpleFeatureWriter
          FeatureWriter for updating SimpleFeature content.
 

Uses of FeatureWriter in org.geotools.data.store
 

Classes in org.geotools.data.store that implement FeatureWriter
 class DiffContentFeatureWriter
          A FeatureWriter that captures modifications against a FeatureReader.
 class EventContentFeatureWriter
          FeatureWriter wrapper that issues events modifications as required.
 

Methods in org.geotools.data.store that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentDataStore.getFeatureWriter(String typeName, Filter filter, Transaction tx)
          Returns a feature writer for the specified query and transaction.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentDataStore.getFeatureWriter(String typeName, Transaction tx)
          Returns a feature writer for the specified type name and transaction.
 FeatureWriter<SimpleFeatureType,SimpleFeature> ContentDataStore.getFeatureWriterAppend(String typeName, Transaction tx)
          Returns an appending feature writer for the specified type name and transaction.
 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.
 

Constructors in org.geotools.data.store with parameters of type FeatureWriter
EventContentFeatureWriter(ContentFeatureStore store, FeatureWriter<SimpleFeatureType,SimpleFeature> writer)
          EventContentFeatureWriter construction.
 

Uses of FeatureWriter in org.geotools.data.transform
 

Methods in org.geotools.data.transform that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> SingleFeatureSourceDataStore.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> SingleFeatureSourceDataStore.getFeatureWriter(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> SingleFeatureSourceDataStore.getFeatureWriterAppend(String typeName, 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.
 

Uses of FeatureWriter in org.geotools.gce.imagemosaic.catalog.oracle
 

Methods in org.geotools.gce.imagemosaic.catalog.oracle that return FeatureWriter
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStoreWrapper.getFeatureWriter(String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStoreWrapper.getFeatureWriter(String typeName, Transaction transaction)
           
 FeatureWriter<SimpleFeatureType,SimpleFeature> DataStoreWrapper.getFeatureWriterAppend(String typeName, Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.geopkg
 

Methods in org.geotools.geopkg with parameters of type FeatureWriter
static SimpleFeatureWriter Features.simple(FeatureWriter w)
           
 

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<SimpleFeatureType,SimpleFeature> JDBCFeatureStore.getWriterInternal(Query query, int flags)
           
 

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



Copyright © 1996-2014 Geotools. All Rights Reserved.