Uses of Interface
org.geotools.data.DataStore

Packages that use DataStore
org.geotools.arcsde   
org.geotools.arcsde.data DataStore implementation for the ArcSDE 8.x and 9.x spatial gateway. 
org.geotools.data Defines the DataStoreAPI via which all data is imported or exported. 
org.geotools.data.collection   
org.geotools.data.db2   
org.geotools.data.gen   
org.geotools.data.gen.tool   
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.view   
org.geotools.data.wfs   
org.geotools.data.wfs.v1_0_0   
org.geotools.data.wfs.v1_1_0   
org.geotools.styling Allows for symbolization of geospatial data. 
 

Uses of DataStore in org.geotools.arcsde
 

Methods in org.geotools.arcsde that return DataStore
 DataStore ArcSDEDataStoreFactory.createDataStore(Map params)
          crates an SdeDataSource based on connection parameters held in params.
 DataStore ArcSDEDataStoreFactory.createNewDataStore(Map map)
           
 

Uses of DataStore in org.geotools.arcsde.data
 

Classes in org.geotools.arcsde.data that implement DataStore
 class ArcSDEDataStore
          DataStore implementation to work upon an ArcSDE spatial database gateway.
 

Uses of DataStore in org.geotools.data
 

Classes in org.geotools.data that implement DataStore
 class AbstractDataStore
          Represents a stating point for implementing your own DataStore.
 class AbstractFileDataStore
           This class assumes the DataStore represents a single source, represented by a URL.
 

Methods in org.geotools.data that return DataStore
abstract  DataStore AbstractDataStoreTest.createDataStore()
          Creates a new instance of the datastore.
 DataStore DataStoreFactorySpi.createDataStore(Map<String,Serializable> params)
          Construct a live data source using the params specifed.
 DataStore FileDataStoreFactorySpi.createDataStore(URL url)
          A DataStore attached to the provided url, may be created if needed.
 DataStore DataStoreFactorySpi.createNewDataStore(Map<String,Serializable> params)
           
 DataStore DefaultRepository.dataStore(Name name)
           
 DataStore Repository.dataStore(Name name)
          Search for the DataStore by name.
 DataStore DefaultRepository.datastore(String id)
           
 DataStore DefaultRepository.dataStore(String name)
           
abstract  DataStore AbstractFeatureSource.getDataStore()
          Overrides to explicitly type narrow the return type to DataStore
static DataStore DataStoreFinder.getDataStore(Map params)
          Checks each available datasource implementation in turn and returns the first one which claims to support the resource identified by the params object.
static DataStore FileDataStoreFinder.getDataStore(URL url)
          Checks each available datasource implementation in turn and returns the first one which claims to support the resource identified by the params object.
abstract  DataStore AbstractDataStoreTest.tearDownDataStore(DataStore data)
          This method must remove the roads and rivers types from the datastore.
 

Methods in org.geotools.data that return types with arguments of type DataStore
 List<DataStore> DefaultRepository.getDataStores()
           
 List<DataStore> Repository.getDataStores()
          List of available DataStore instances; these are considered to be live/connected datastores under the management of the application and should not be closed or otherwise harmed by client code.
 

Methods in org.geotools.data with parameters of type DataStore
abstract  DataStore AbstractDataStoreTest.tearDownDataStore(DataStore data)
          This method must remove the roads and rivers types from the datastore.
 

Uses of DataStore in org.geotools.data.collection
 

Classes in org.geotools.data.collection that implement DataStore
 class CollectionDataStore
          Simple data store wrapper for feature collections.
 

Uses of DataStore in org.geotools.data.db2
 

Classes in org.geotools.data.db2 that implement DataStore
 class DB2DataStore
          DB2 DataStore implementation.
 

Methods in org.geotools.data.db2 that return DataStore
 DataStore DB2DataStoreFactory.createDataStore(Map params)
          Constructs a DB2 data store using the params.
 DataStore DB2DataStoreFactory.createNewDataStore(Map params)
          Creating a new DB2 database is not supported.
 

Uses of DataStore in org.geotools.data.gen
 

Classes in org.geotools.data.gen that implement DataStore
 class PreGeneralizedDataStore
           
 

Methods in org.geotools.data.gen that return DataStore
 DataStore PreGeneralizedDataStoreFactory.createDataStore(Map<String,Serializable> params)
           
 DataStore PreGeneralizedDataStoreFactory.createNewDataStore(Map<String,Serializable> params)
           
 DataStore DSFinderRepository.dataStore(Name name)
           
 

Methods in org.geotools.data.gen that return types with arguments of type DataStore
 List<DataStore> DSFinderRepository.getDataStores()
           
 

Uses of DataStore in org.geotools.data.gen.tool
 

Methods in org.geotools.data.gen.tool with parameters of type DataStore
protected  void Toolbox.generalizeShapeFile(File shapeFile, DataStore shapeDS, File targetDir, Double[] distanceArray)
           
 

Uses of DataStore in org.geotools.data.jdbc
 

Classes in org.geotools.data.jdbc that implement DataStore
 class JDBC1DataStore
          Abstract class for JDBC based DataStore implementations.
 class JDBC2DataStore
          This JDBCDataStore is able to take advantage of additonal functionality provided by JDBC2 level drivers - for example ConnectionPools.
 class JDBCDataStore
          Abstract class for JDBC (level2) based DataStore implementations.
 

Methods in org.geotools.data.jdbc that return DataStore
 DataStore JDBCFeatureSource.getDataStore()
          Retrieve DataStore for this FetureSource.
 

Uses of DataStore in org.geotools.data.memory
 

Classes in org.geotools.data.memory that implement DataStore
 class MemoryDataStore
          This is an example implementation of a DataStore used for testing.
 

Uses of DataStore in org.geotools.data.postgis
 

Classes in org.geotools.data.postgis that implement DataStore
 class PostgisDataStore
          Postgis DataStore implementation.
 

Methods in org.geotools.data.postgis that return DataStore
 DataStore PostgisDataStoreFactory.createDataStore(Map params)
          Construct a postgis data store using the params.
 DataStore PostgisDataStoreFactory.createNewDataStore(Map params)
          Postgis cannot create a new database.
 

Uses of DataStore in org.geotools.data.property
 

Classes in org.geotools.data.property that implement DataStore
 class PropertyDataStore
          Sample DataStore implementation, please see formal tutorial included with users docs.
 

Methods in org.geotools.data.property that return DataStore
 DataStore PropertyDataStoreFactory.createDataStore(Map params)
          DOCUMENT ME!
 DataStore PropertyDataStoreFactory.createNewDataStore(Map params)
          DOCUMENT ME!
 DataStore PropertyFeatureSource.getDataStore()
           
 

Uses of DataStore in org.geotools.data.shapefile
 

Classes in org.geotools.data.shapefile that implement DataStore
 class ShapefileDataStore
          A DataStore implementation which allows reading and writing from Shapefiles.
 

Methods in org.geotools.data.shapefile that return DataStore
 DataStore ShapefileDataStoreFactory.createDataStore(URL url)
          We may need to create a new datastore if the provided file does not exist.
 DataStore ShapefileDataStoreFactory.createDataStore(URL url, boolean memorymapped)
           
 DataStore ShapefileDataStoreFactory.createNewDataStore(Map params)
          Creates a new DataStore - for a file that does not exist yet.
 DataStore ShapefileFeatureStore.getDataStore()
           
 DataStore ShapefileFeatureLocking.getDataStore()
           
 

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

Classes in org.geotools.data.shapefile.indexed that implement DataStore
 class IndexedShapefileDataStore
          A DataStore implementation which allows reading and writing from Shapefiles.
 

Uses of DataStore in org.geotools.data.store
 

Classes in org.geotools.data.store that implement DataStore
 class AbstractDataStore2
          Represents a stating point for implementing your own DataStore.
 class ContentDataStore
          Abstract base class for data stores.
 

Fields in org.geotools.data.store declared as DataStore
protected  DataStore ActiveTypeEntry.parent
          Remember parent.
 

Methods in org.geotools.data.store that return DataStore
 DataStore AbstractFeatureSource2.getDataStore()
           
 

Constructors in org.geotools.data.store with parameters of type DataStore
ActiveTypeEntry(DataStore parent, SimpleFeatureType schema, Map metadata)
           
 

Uses of DataStore in org.geotools.data.view
 

Methods in org.geotools.data.view that return DataStore
 DataStore DefaultView.getDataStore()
          Implement getDataStore.
 

Uses of DataStore in org.geotools.data.wfs
 

Subinterfaces of DataStore in org.geotools.data.wfs
 interface WFSDataStore
          DataStore extension interface to provide WFS specific extra information.
 

Methods in org.geotools.data.wfs that return DataStore
 DataStore WFSDataStoreFactory.createNewDataStore(Map params)
          Unsupported operation, can't create a WFS service.
 

Uses of DataStore in org.geotools.data.wfs.v1_0_0
 

Classes in org.geotools.data.wfs.v1_0_0 that implement DataStore
 class WFS_1_0_0_DataStore
           DOCUMENT ME!
 

Methods in org.geotools.data.wfs.v1_0_0 that return DataStore
 DataStore WFSFeatureSource.getDataStore()
           
 

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

Classes in org.geotools.data.wfs.v1_1_0 that implement DataStore
 class WFS_1_1_0_DataStore
          A WFS 1.1 DataStore implementation.
 

Methods in org.geotools.data.wfs.v1_1_0 that return DataStore
 DataStore WFSFeatureSource.getDataStore()
           
 

Uses of DataStore in org.geotools.styling
 

Methods in org.geotools.styling that return DataStore
 DataStore UserLayerImpl.getInlineFeatureDatastore()
           
 DataStore UserLayer.getInlineFeatureDatastore()
           
 

Methods in org.geotools.styling with parameters of type DataStore
 void UserLayerImpl.setInlineFeatureDatastore(DataStore store)
           
 void UserLayer.setInlineFeatureDatastore(DataStore store)
           
 



Copyright © 1996-2009 Geotools. All Rights Reserved.