Uses of Interface
org.geotools.api.data.SimpleFeatureSource
-
-
Uses of SimpleFeatureSource in org.geotools.api.data
Subinterfaces of SimpleFeatureSource in org.geotools.api.data Modifier and Type Interface Description interface
SimpleFeatureLocking
Used to lock feature content to protect against other threads (or depending on the source of data other applications) making modifications when you are not looking.interface
SimpleFeatureStore
Methods in org.geotools.api.data that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
DataStore. getFeatureSource(String typeName)
Gets aSimpleFeatureSource
for features of the specified type.SimpleFeatureSource
DataStore. getFeatureSource(Name typeName)
Gets aSimpleFeatureSource
for features of the type specified by a qualified name (namespace plus type name).SimpleFeatureSource
FileDataStore. getFeatureSource()
-
Uses of SimpleFeatureSource in org.geotools.appschema.jdbc
Classes in org.geotools.appschema.jdbc that implement SimpleFeatureSource Modifier and Type Class Description class
JoiningJDBCFeatureSource
This is where the magic happens. -
Uses of SimpleFeatureSource in org.geotools.data
Fields in org.geotools.data declared as SimpleFeatureSource Modifier and Type Field Description protected SimpleFeatureSource
DefaultFeatureResults. featureSource
Feature source used to aquire features, note we are only a "view" of this FeatureSource, its contents, transaction and events need to be forwarded through this collection api to simplier code such as renderers.Methods in org.geotools.data that return SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
DataUtilities. createView(DataStore store, Query query)
Return a 'view' of the givenDataStore
constrained by aQuery
.static SimpleFeatureSource
DataUtilities. createView(SimpleFeatureSource source, Query query)
Return a 'view' of the givenFeatureSource
constrained by aQuery
.static SimpleFeatureSource
DataUtilities. simple(FeatureSource source)
A safe cast to SimpleFeatureSource; that will introduce a wrapper if it has to.static SimpleFeatureSource
DataUtilities. source(SimpleFeature... featureArray)
Wrap up an array of features as a FeatureSource.static SimpleFeatureSource
DataUtilities. source(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Wraps up the provided feature collection in as a SimpleFeatureSource.SimpleFeatureSource
DefaultRepository. source(String dataStoreId, String typeName)
Methods in org.geotools.data with parameters of type SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
DataUtilities. createView(SimpleFeatureSource source, Query query)
Return a 'view' of the givenFeatureSource
constrained by aQuery
.static DataStore
DataUtilities. dataStore(SimpleFeatureSource source)
Adapt a single FeatureSource as a read-only DataStore.Constructors in org.geotools.data with parameters of type SimpleFeatureSource Constructor Description DefaultFeatureResults(SimpleFeatureSource source, Query query)
FeatureResults query against featureSource. -
Uses of SimpleFeatureSource in org.geotools.data.collection
Classes in org.geotools.data.collection that implement SimpleFeatureSource Modifier and Type Class Description class
CollectionFeatureSource
This is a "port" of ContentFeatureSource to work with an iterator.class
SpatialIndexFeatureSource
A FeatureSource using a spatial index to hold on to features and serve them up for fast display. -
Uses of SimpleFeatureSource in org.geotools.data.complex.xml
Subinterfaces of SimpleFeatureSource in org.geotools.data.complex.xml Modifier and Type Interface Description interface
XmlFeatureSource
-
Uses of SimpleFeatureSource in org.geotools.data.csv
Classes in org.geotools.data.csv that implement SimpleFeatureSource Modifier and Type Class Description class
CSVFeatureSource
class
CSVFeatureStore
Read-write access to CSV File.Methods in org.geotools.data.csv that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
CSVDataStore. getFeatureSource()
-
Uses of SimpleFeatureSource in org.geotools.data.directory
Classes in org.geotools.data.directory that implement SimpleFeatureSource Modifier and Type Class Description class
DirectoryFeatureLocking
class
DirectoryFeatureSource
class
DirectoryFeatureStore
Methods in org.geotools.data.directory that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
DirectoryDataStore. getFeatureSource(String typeName)
SimpleFeatureSource
DirectoryDataStore. getFeatureSource(Name typeName)
SimpleFeatureSource
DirectoryFeatureSource. unwrap()
Constructors in org.geotools.data.directory with parameters of type SimpleFeatureSource Constructor Description DirectoryFeatureSource(SimpleFeatureSource delegate)
-
Uses of SimpleFeatureSource in org.geotools.data.gen
Classes in org.geotools.data.gen that implement SimpleFeatureSource Modifier and Type Class Description class
PreGeneralizedFeatureSource
Methods in org.geotools.data.gen that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
PreGeneralizedDataStore. getFeatureSource(String typeName)
SimpleFeatureSource
PreGeneralizedDataStore. getFeatureSource(Name typeName)
Methods in org.geotools.data.gen with parameters of type SimpleFeatureSource Modifier and Type Method Description protected Query
PreGeneralizedFeatureSource. getProxyObject(Query query, SimpleFeatureSource fs, Generalization di)
-
Uses of SimpleFeatureSource in org.geotools.data.geojson.store
Classes in org.geotools.data.geojson.store that implement SimpleFeatureSource Modifier and Type Class Description class
GeoJSONFeatureSource
class
GeoJSONFeatureStore
Methods in org.geotools.data.geojson.store that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
GeoJSONDataStore. getFeatureSource()
-
Uses of SimpleFeatureSource in org.geotools.data.memory
Classes in org.geotools.data.memory that implement SimpleFeatureSource Modifier and Type Class Description class
MemoryFeatureSource
Read access to feature content held in memory.class
MemoryFeatureStore
-
Uses of SimpleFeatureSource in org.geotools.data.mongodb
Classes in org.geotools.data.mongodb that implement SimpleFeatureSource Modifier and Type Class Description class
MongoFeatureSource
class
MongoFeatureStore
-
Uses of SimpleFeatureSource in org.geotools.data.property
Classes in org.geotools.data.property that implement SimpleFeatureSource Modifier and Type Class Description class
PropertyFeatureSource
class
PropertyFeatureStore
Implementation used for writeable property files. -
Uses of SimpleFeatureSource in org.geotools.data.store
Classes in org.geotools.data.store that implement SimpleFeatureSource Modifier and Type Class Description class
ContentFeatureSource
Abstract implementation of FeatureSource.class
ContentFeatureStore
Abstract implementation of FeatureStore.Methods in org.geotools.data.store that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
ContentDataStore. getFeatureSource(Name typeName)
Delegates toContentDataStore.getFeatureSource(Name, Transaction)
SimpleFeatureSource
DecoratingDataStore. getFeatureSource(String typeName)
SimpleFeatureSource
DecoratingDataStore. getFeatureSource(Name typeName)
-
Uses of SimpleFeatureSource in org.geotools.data.transform
Classes in org.geotools.data.transform that implement SimpleFeatureSource Modifier and Type Class Description class
TransformFeatureLocking
class
TransformFeatureSource
A feature source that can transform a source feature source using a set of expressionsclass
TransformFeatureStore
A transforming feature store, will transform on the fly all attempts to write so that the underlying features are getting modified while exposing a different feature type to its callers.Fields in org.geotools.data.transform declared as SimpleFeatureSource Modifier and Type Field Description protected SimpleFeatureSource
TransformFeatureSource. source
Methods in org.geotools.data.transform that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
SingleFeatureSourceDataStore. getFeatureSource(String typeName)
SimpleFeatureSource
SingleFeatureSourceDataStore. getFeatureSource(Name typeName)
static SimpleFeatureSource
TransformFactory. transform(SimpleFeatureSource source, String name, List<Definition> definitions)
Creates a transformed SimpleFeatureSource/SimpleFeatureStore from the original source, giving it a certain name and a set of computed propertiesstatic SimpleFeatureSource
TransformFactory. transform(SimpleFeatureSource source, Name name, List<Definition> definitions)
Creates a transformed SimpleFeatureSource/SimpleFeatureStore from the original source, giving it a certain name and a set of computed propertiesMethods in org.geotools.data.transform with parameters of type SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
TransformFactory. transform(SimpleFeatureSource source, String name, List<Definition> definitions)
Creates a transformed SimpleFeatureSource/SimpleFeatureStore from the original source, giving it a certain name and a set of computed propertiesstatic SimpleFeatureSource
TransformFactory. transform(SimpleFeatureSource source, Name name, List<Definition> definitions)
Creates a transformed SimpleFeatureSource/SimpleFeatureStore from the original source, giving it a certain name and a set of computed propertiesConstructors in org.geotools.data.transform with parameters of type SimpleFeatureSource Constructor Description SingleFeatureSourceDataStore(SimpleFeatureSource fs)
TransformFeatureSource(SimpleFeatureSource source, Name name, List<Definition> definitions)
Creates a transformed feature source from the original source, giving it a certain name and a set of computed properties -
Uses of SimpleFeatureSource in org.geotools.data.view
Classes in org.geotools.data.view that implement SimpleFeatureSource Modifier and Type Class Description class
DefaultView
Wrapper for SimpleFeatureSource constrained by a Query.Fields in org.geotools.data.view declared as SimpleFeatureSource Modifier and Type Field Description protected SimpleFeatureSource
DefaultView. source
SimpleFeatureSource being served upMethods in org.geotools.data.view that return SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
DefaultView. create(SimpleFeatureSource source, Query query)
Factory that make the correct decorator for the provided featureSource.Methods in org.geotools.data.view with parameters of type SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
DefaultView. create(SimpleFeatureSource source, Query query)
Factory that make the correct decorator for the provided featureSource.Constructors in org.geotools.data.view with parameters of type SimpleFeatureSource Constructor Description DefaultView(SimpleFeatureSource source, Query query)
Creates a new GeoServerFeatureSource object. -
Uses of SimpleFeatureSource in org.geotools.data.vpf
Classes in org.geotools.data.vpf that implement SimpleFeatureSource Modifier and Type Class Description class
VPFCovFeatureSource
VPFFeature Sourceclass
VPFFeatureSource
VPFFeature Sourceclass
VPFLibFeatureSource
VPFFeature Source -
Uses of SimpleFeatureSource in org.geotools.data.vpf.file
Classes in org.geotools.data.vpf.file that implement SimpleFeatureSource Modifier and Type Class Description class
VPFFileFeatureSource
VPFFile Feature Source -
Uses of SimpleFeatureSource in org.geotools.data.wfs
Classes in org.geotools.data.wfs that implement SimpleFeatureSource Modifier and Type Class Description class
WFSStoredQueryFeatureSource
-
Uses of SimpleFeatureSource in org.geotools.gce.imagemosaic.catalog.oracle
Classes in org.geotools.gce.imagemosaic.catalog.oracle that implement SimpleFeatureSource Modifier and Type Class Description class
OracleTransformFeatureStore
Fields in org.geotools.gce.imagemosaic.catalog.oracle declared as SimpleFeatureSource Modifier and Type Field Description protected SimpleFeatureSource
AbstractFeatureTypeMapper. simpleFeatureSource
TheSimpleFeatureSource
available for that typeMethods in org.geotools.gce.imagemosaic.catalog.oracle that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
DataStoreWrapper. getFeatureSource(String typeName)
SimpleFeatureSource
DataStoreWrapper. getFeatureSource(Name typeName)
SimpleFeatureSource
AbstractFeatureTypeMapper. getSimpleFeatureSource()
SimpleFeatureSource
FeatureTypeMapper. getSimpleFeatureSource()
protected SimpleFeatureSource
DataStoreWrapper. transformFeatureStore(SimpleFeatureStore source, FeatureTypeMapper mapper)
protected SimpleFeatureSource
OracleDatastoreWrapper. transformFeatureStore(SimpleFeatureStore store, FeatureTypeMapper mapper)
Methods in org.geotools.gce.imagemosaic.catalog.oracle with parameters of type SimpleFeatureSource Modifier and Type Method Description void
AbstractFeatureTypeMapper. setSimpleFeatureSource(SimpleFeatureSource simpleFeatureSource)
-
Uses of SimpleFeatureSource in org.geotools.gce.imagemosaic.catalog.postgis
Classes in org.geotools.gce.imagemosaic.catalog.postgis that implement SimpleFeatureSource Modifier and Type Class Description class
PostgisTransformFeatureStore
A Postgis transforming feature store, will transform on the fly all attempts to write so that the underlying features are getting modified while exposing a different feature type to its callers.Methods in org.geotools.gce.imagemosaic.catalog.postgis that return SimpleFeatureSource Modifier and Type Method Description protected SimpleFeatureSource
PostgisDatastoreWrapper. transformFeatureStore(SimpleFeatureStore store, FeatureTypeMapper mapper)
-
Uses of SimpleFeatureSource in org.geotools.gce.imagemosaic.catalog.sqlserver
Classes in org.geotools.gce.imagemosaic.catalog.sqlserver that implement SimpleFeatureSource Modifier and Type Class Description class
SQLServerTransformFeatureStore
A SQLServer transforming feature store, will transform on the fly all attempts to write so that the underlying features are getting modified while exposing a different feature type to its callers.Methods in org.geotools.gce.imagemosaic.catalog.sqlserver that return SimpleFeatureSource Modifier and Type Method Description protected SimpleFeatureSource
SQLServerDatastoreWrapper. transformFeatureStore(SimpleFeatureStore store, FeatureTypeMapper mapper)
-
Uses of SimpleFeatureSource in org.geotools.geopkg
Methods in org.geotools.geopkg with parameters of type SimpleFeatureSource Modifier and Type Method Description void
GeoPackage. add(FeatureEntry entry, SimpleFeatureSource source, Filter filter)
Adds a new feature dataset to the geopackage. -
Uses of SimpleFeatureSource in org.geotools.grid
Methods in org.geotools.grid that return SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
Grids. createHexagonalGrid(ReferencedEnvelope bounds, double sideLen)
Creates a vector grid of hexagonal elements.static SimpleFeatureSource
Grids. createHexagonalGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing)
Creates a vector grid of hexagonal elements represented by 'densified' polygons.static SimpleFeatureSource
Grids. createHexagonalGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, GridFeatureBuilder builder)
Creates a vector grid of hexagonal elements represented by 'densified' polygons.static SimpleFeatureSource
Lines. createOrthoLines(ReferencedEnvelope bounds, Collection<OrthoLineDef> lineDefs)
Creates a grid of ortho-lines.static SimpleFeatureSource
Lines. createOrthoLines(ReferencedEnvelope bounds, Collection<OrthoLineDef> lineDefs, double vertexSpacing)
Creates a grid of ortho-lines.static SimpleFeatureSource
Lines. createOrthoLines(ReferencedEnvelope bounds, Collection<OrthoLineDef> lineDefs, double vertexSpacing, GridFeatureBuilder lineFeatureBuilder)
Creates a grid of ortho-lines.static SimpleFeatureSource
Grids. createOvalGrid(ReferencedEnvelope bounds, double sideLen)
Creates a vector grid of oval elements.static SimpleFeatureSource
Grids. createOvalGrid(ReferencedEnvelope bounds, double sideLen, GridFeatureBuilder builder)
Creates a vector grid of square elements represented by 'densified' polygons.static SimpleFeatureSource
Grids. createSquareGrid(ReferencedEnvelope bounds, double sideLen)
Creates a vector grid of square elements.static SimpleFeatureSource
Grids. createSquareGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing)
Creates a vector grid of square elements represented by 'densified' polygons.static SimpleFeatureSource
Grids. createSquareGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, GridFeatureBuilder builder)
Creates a vector grid of square elements represented by 'densified' polygons. -
Uses of SimpleFeatureSource in org.geotools.grid.hexagon
Methods in org.geotools.grid.hexagon that return SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
Hexagons. createGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, HexagonOrientation orientation, GridFeatureBuilder gridFeatureBuilder)
Creates a new grid of tesselated hexagons within a bounding rectangle with grid elements represented by densified polygons (ie. additional vertices added to each edge).static SimpleFeatureSource
Hexagons. createGrid(ReferencedEnvelope bounds, double sideLen, HexagonOrientation orientation, GridFeatureBuilder gridBuilder)
Creates a new grid of tesselated hexagons within a bounding rectangle with grid elements represented by simple (ie. undensified) polygons. -
Uses of SimpleFeatureSource in org.geotools.grid.oblong
Methods in org.geotools.grid.oblong that return SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
Oblongs. createGrid(ReferencedEnvelope bounds, double width, double height, double vertexSpacing, GridFeatureBuilder gridFeatureBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by densified polygons (ie. additional vertices added to each edge).static SimpleFeatureSource
Oblongs. createGrid(ReferencedEnvelope bounds, double width, double height, GridFeatureBuilder gridBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by simple (ie. undensified) polygons. -
Uses of SimpleFeatureSource in org.geotools.grid.oval
Methods in org.geotools.grid.oval that return SimpleFeatureSource Modifier and Type Method Description static SimpleFeatureSource
Ovals. createGrid(ReferencedEnvelope bounds, double width, double height, double vertexSpacing, GridFeatureBuilder gridFeatureBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by densified polygons (ie. additional vertices added to each edge).static SimpleFeatureSource
Ovals. createGrid(ReferencedEnvelope bounds, double width, double height, GridFeatureBuilder gridBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by simple (ie. undensified) polygons. -
Uses of SimpleFeatureSource in org.geotools.jdbc
Classes in org.geotools.jdbc that implement SimpleFeatureSource Modifier and Type Class Description class
JDBCFeatureSource
class
JDBCFeatureStore
FeatureStore implementation for jdbc based relational database tables. -
Uses of SimpleFeatureSource in org.geotools.map
Fields in org.geotools.map declared as SimpleFeatureSource Modifier and Type Field Description protected SimpleFeatureSource
RasterLayer. source
SimpleFeatureSource used to provide the outline of the raster content.Methods in org.geotools.map that return SimpleFeatureSource Modifier and Type Method Description SimpleFeatureSource
RasterLayer. getFeatureSource()
FetureSource representation of raster contents (in case a vector based renderer wishes to draw a polygon outline).SimpleFeatureSource
FeatureLayer. getSimpleFeatureSource()
Get the feature source for this layer. -
Uses of SimpleFeatureSource in org.geotools.stac.store
Classes in org.geotools.stac.store that implement SimpleFeatureSource Modifier and Type Class Description class
STACFeatureSource
-
Uses of SimpleFeatureSource in org.geotools.vectormosaic
Classes in org.geotools.vectormosaic that implement SimpleFeatureSource Modifier and Type Class Description class
VectorMosaicFeatureSource
FeatureSource for a vector mosaic.
-