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.dir Directory DataStore Overview This package represents the functionality required to chain datastores, ie. to represents a directory of mixed file types as a single datastore.  
org.geotools.data.geometryless   
org.geotools.data.hsql   
org.geotools.data.jdbc   
org.geotools.data.memory   
org.geotools.data.mif   
org.geotools.data.mysql   
org.geotools.data.oracle   
org.geotools.data.pickle   
org.geotools.data.postgis   
org.geotools.data.property   
org.geotools.data.shapefile   
org.geotools.data.shapefile.indexed   
org.geotools.data.store   
 

Uses of FeatureWriter in org.geotools.data
 

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

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

Constructors in org.geotools.data with parameters of type FeatureWriter
FilteringFeatureWriter(FeatureWriter 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.dir
 

Methods in org.geotools.data.dir that return FeatureWriter
 FeatureWriter DirectoryDataStore.getFeatureWriter(java.lang.String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter DirectoryDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
           
 FeatureWriter DirectoryDataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
           
 

Uses of FeatureWriter in org.geotools.data.geometryless
 

Classes in org.geotools.data.geometryless that implement FeatureWriter
 class GeometrylessFeatureWriter
          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.geometryless that return FeatureWriter
 FeatureWriter LocationsXYDataStore.getFeatureWriter(java.lang.String typeName)
          Utility method for getting a FeatureWriter for modifying existing features, using no feature filtering and auto-committing.
 FeatureWriter LocationsXYDataStore.getFeatureWriterAppend(java.lang.String typeName)
          Utility method for getting a FeatureWriter for adding new features, using auto-committing.
 FeatureWriter JDBCDataStore.getFeatureWriter(java.lang.String typeName)
          Utility method for getting a FeatureWriter for modifying existing features, using no feature filtering and auto-committing.
 FeatureWriter JDBCDataStore.getFeatureWriterAppend(java.lang.String typeName)
          Utility method for getting a FeatureWriter for adding new features, using auto-committing.
 FeatureWriter BBOXDataStore.getFeatureWriter(java.lang.String typeName)
          Utility method for getting a FeatureWriter for modifying existing features, using no feature filtering and auto-committing.
 FeatureWriter BBOXDataStore.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.hsql
 

Classes in org.geotools.data.hsql that implement FeatureWriter
 class HsqlFeatureWriter
          Feature writer handling specific geometric function from HSQL This essentially adds the DB in a box wrappers around various HSQL queries make them work.
 

Methods in org.geotools.data.hsql that return FeatureWriter
 FeatureWriter HsqlDataStore.getFeatureWriter(java.lang.String typeName)
          Utility method for getting a FeatureWriter for modifying existing features, using no feature filtering and auto-committing.
 FeatureWriter HsqlDataStore.getFeatureWriter(java.lang.String typeName, Filter filter, Transaction transaction)
          Aquire FetureWriter for modification of contents specifed by filter.
 FeatureWriter HsqlDataStore.getFeatureWriterAppend(java.lang.String typeName)
          Utility method for getting a FeatureWriter for adding new features, using auto-committing.
 FeatureWriter HsqlTransactionStateDiff.writer(java.lang.String typeName, Filter filter)
          Convience Method for a Transaction based FeatureWriter Constructs a DiffFeatureWriter that works against this 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 JDBC1DataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
          Retrieve a FeatureWriter over entire dataset.
 FeatureWriter JDBC1DataStore.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
          Retrieve a FeatureWriter for creating new content.
 FeatureWriter JDBC1DataStore.getFeatureWriter(java.lang.String typeName, Filter filter, Transaction transaction)
          Aquire FetureWriter for modification of contents specifed by filter.
 

Methods in org.geotools.data.jdbc with parameters of type FeatureWriter
protected  void JDBCFeatureStore.modifyFeatures(AttributeType[] type, java.lang.Object[] value, FeatureWriter writer)
           
 

Uses of FeatureWriter in org.geotools.data.memory
 

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

Uses of FeatureWriter in org.geotools.data.mif
 

Methods in org.geotools.data.mif that return FeatureWriter
 FeatureWriter MIFFile.getFeatureWriter()
          Returns a FeatureWriter for writing features to the MIF/MID file.
protected  FeatureWriter MIFDataStore.getFeatureWriter(java.lang.String typeName)
          Gets a FeatureWriter from a MIFFile object
 

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 MySQLDataStore.getFeatureWriter(java.lang.String typeName)
          Utility method for getting a FeatureWriter for modifying existing features, using no feature filtering and auto-committing.
 FeatureWriter 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.pickle
 

Methods in org.geotools.data.pickle that return FeatureWriter
protected  FeatureWriter PickleDataStore.getFeatureWriter(java.lang.String typeName)
           
 

Uses of FeatureWriter in org.geotools.data.postgis
 

Classes in org.geotools.data.postgis that implement FeatureWriter
 class PostgisFeatureWriter
           
 

Methods in org.geotools.data.postgis that return FeatureWriter
 FeatureWriter PostgisDataStore.getFeatureWriter(java.lang.String typeName, Transaction transaction)
          Retrieve a FeatureWriter over entire dataset.
 FeatureWriter PostgisDataStore.getFeatureWriterAppend(java.lang.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 PropertyDataStore.getFeatureWriter(java.lang.String typeName)
           
 

Uses of FeatureWriter in org.geotools.data.shapefile
 

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

Methods in org.geotools.data.shapefile that return FeatureWriter
protected  FeatureWriter 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
 

Classes in org.geotools.data.shapefile.indexed that implement FeatureWriter
protected  class IndexedShapefileDataStore.Writer
          A FeatureWriter for ShapefileDataStore.
 

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

Uses of FeatureWriter in org.geotools.data.store
 

Methods in org.geotools.data.store that return FeatureWriter
 FeatureWriter AbstractDataStore2.getFeatureWriter(java.lang.String typeName, Filter filter, Transaction transaction)
           
 FeatureWriter AbstractDataStore2.getFeatureWriter(java.lang.String typeName, Transaction transaction)
          TODO summary sentence for getFeatureWriter ...
 FeatureWriter AbstractDataStore2.getFeatureWriterAppend(java.lang.String typeName, Transaction transaction)
          FeatureWriter setup to add new content.
 FeatureWriter TypeDiffState.writer()
          Convience Method for a Transaction based FeatureWriter Constructs a DiffFeatureWriter that works against this Transaction.
protected  FeatureWriter DataFeatureCollection.writer()
          Subclass may provide an implementation of this method to indicate that read/write support is provided.
 



Copyright © GeoTools. All Rights Reserved.