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 Implementations of FeatureCollection for different purposes. 
org.geotools.data.complex This package contains the implementation of a ComplexDataStore, Author note: though this "Complex" datastore has born to provide complex features out of a simple features data source, it may be better called a DerivativeDataStore or something like that, you'll see why later. 
org.geotools.data.directory   
org.geotools.data.gen   
org.geotools.data.gen.tool   
org.geotools.data.memory   
org.geotools.data.property   
org.geotools.data.shapefile   
org.geotools.data.store   
org.geotools.data.transform   
org.geotools.data.view   
org.geotools.data.wfs   
org.geotools.data.wfs.v1_0_0   
org.geotools.data.wfs.v1_1_0   
org.geotools.gce.imagemosaic.catalog.oracle   
org.geotools.jdbc   
org.geotools.styling Allows for symbolization of geospatial data. 
org.geotools.styling.builder   
org.geotools.swt.control SWT controls, wizards and dialogs used to do common tasks. 
 

Uses of DataStore in org.geotools.arcsde
 

Methods in org.geotools.arcsde that return DataStore
 DataStore ArcSDEJNDIDataStoreFactory.createDataStore(Map<String,Serializable> params)
          Creates and ArcSDEDataStore from the provided params, where the connection pool is provided by JNDI.
 DataStore ArcSDEDataStoreFactory.createDataStore(Map<String,Serializable> params)
          crates an SdeDataSource based on connection parameters held in params.
 DataStore ArcSDEJNDIDataStoreFactory.createNewDataStore(Map<String,Serializable> params)
           
 DataStore ArcSDEDataStoreFactory.createNewDataStore(Map<String,Serializable> 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
 

Subinterfaces of DataStore in org.geotools.data
 interface FileDataStore
          DataStore represents a single file of content.
 

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 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)
           
 DataStore CachingFeatureSource.getDataStore()
          Deprecated.  
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.
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
static SimpleFeatureSource DataUtilities.createView(DataStore store, Query query)
          Return a 'view' of the given DataStore constrained by a Query.
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.
 

Methods in org.geotools.data.collection that return DataStore
 DataStore SpatialIndexFeatureSource.getDataStore()
           
 

Uses of DataStore in org.geotools.data.complex
 

Methods in org.geotools.data.complex that return DataStore
 DataStore AppSchemaDataAccessFactory.createNewDataStore(Map params)
           
 DataStore DataAccessRegistry.dataStore(Name name)
           
 

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

Uses of DataStore in org.geotools.data.directory
 

Classes in org.geotools.data.directory that implement DataStore
 class DirectoryDataStore
           
 

Methods in org.geotools.data.directory that return DataStore
 DataStore FileStoreFactory.getDataStore(File file)
          Returns a store for the specified file
 DataStore DirectoryDataStore.getDataStore(String typeName)
          Returns the native store for a specified type name
 

Constructors in org.geotools.data.directory with parameters of type DataStore
DataStoreSoftReference(DataStore referent)
           
 

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.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.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)
           
 DataStore PropertyDataStoreFactory.createNewDataStore(Map params)
           
 

Uses of DataStore in org.geotools.data.shapefile
 

Classes in org.geotools.data.shapefile that implement DataStore
 class ShapefileDataStore
           
 

Methods in org.geotools.data.shapefile that return DataStore
 DataStore ShapefileDataStoreFactory.createDataStore(Map<String,Serializable> params)
           
 DataStore ShapefileDataStoreFactory.createNewDataStore(Map<String,Serializable> params)
           
 DataStore ShapefileDataStoreFactory.ShpFileStoreFactory.getDataStore(File file)
           
 

Uses of DataStore in org.geotools.data.store
 

Classes in org.geotools.data.store that implement DataStore
 class ArrayDataStore
          Simple example of an AbstractDataStore built around the provided array of features.
 class ContentDataStore
          Abstract base class for data stores.
 

Uses of DataStore in org.geotools.data.transform
 

Classes in org.geotools.data.transform that implement DataStore
 class SingleFeatureSourceDataStore
          A data store wrapped around a SimpleFeatureSource object.
 

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
          DataStore used for connecting to 1.0.0 protocol.
 

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.gce.imagemosaic.catalog.oracle
 

Classes in org.geotools.gce.imagemosaic.catalog.oracle that implement DataStore
 class DataStoreWrapper
          A data store wrapper around a DataStore object.
 class OracleDatastoreWrapper
          Specific Oracle implementation for a DataStoreWrapper Oracle DB has a couple of limitations: 1) All attributes and type names are UPPERCASE 2) attribute and type names can't be longer than 30 chars
 

Fields in org.geotools.gce.imagemosaic.catalog.oracle declared as DataStore
protected  DataStore DataStoreWrapper.datastore
          The underlying datastore
 

Constructors in org.geotools.gce.imagemosaic.catalog.oracle with parameters of type DataStore
DataStoreWrapper(DataStore datastore, String auxFolderPath)
          Base constructor
OracleDatastoreWrapper(DataStore datastore, String location)
           
OracleTransformFeatureStore(SimpleFeatureStore store, Name name, List<Definition> definitions, DataStore datastore)
           
 

Uses of DataStore in org.geotools.jdbc
 

Classes in org.geotools.jdbc that implement DataStore
 class JDBCDataStore
          Datastore implementation for jdbc based relational databases.
 

Methods in org.geotools.jdbc that return DataStore
 DataStore JDBCJNDIDataStoreFactory.createNewDataStore(Map params)
           
 DataStore JDBCDataStoreFactory.createNewDataStore(Map params)
           
 

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)
           
 

Uses of DataStore in org.geotools.styling.builder
 

Methods in org.geotools.styling.builder with parameters of type DataStore
 UserLayerBuilder UserLayerBuilder.inlineData(DataStore store, SimpleFeatureType sft)
           
 

Uses of DataStore in org.geotools.swt.control
 

Methods in org.geotools.swt.control with parameters of type DataStore
static String TypeNameChooser.showTypeNameChooser(DataStore dataStore)
           
 



Copyright © 1996-2014 Geotools. All Rights Reserved.