Uses of Interface
org.geotools.data.simple.SimpleFeatureCollection

Packages that use SimpleFeatureCollection
org.geotools   
org.geotools.arcsde.data DataStore implementation for the ArcSDE 8.x and 9.x spatial gateway. 
org.geotools.coverage.grid.io   
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.xml   
org.geotools.data.crs Provides support for the OGC Catalog Specification. 
org.geotools.data.directory   
org.geotools.data.gen   
org.geotools.data.memory   
org.geotools.data.simple   
org.geotools.data.store   
org.geotools.data.transform   
org.geotools.data.view   
org.geotools.data.wfs.v1_0_0   
org.geotools.feature   
org.geotools.feature.collection Helper classes for implementing FeatureCollections. 
org.geotools.feature.visitor   
org.geotools.gce.imagemosaic.catalog   
org.geotools.geopkg   
org.geotools.graph.util.delaunay   
org.geotools.map List of layers to be rendered. 
org.geotools.renderer.lite A simple renderer implementation. 
org.geotools.styling Allows for symbolization of geospatial data. 
org.geotools.swing.table Table model for feature data. 
org.geotools.swt.styling Dialogs to create basic rendering styles. 
org.geotools.swt.styling.simple   
org.geotools.swt.tool Cursor tools for zooming and panning; subclass to implement additional mouse-driven tools. 
org.geotools.validation Defines the Validation Processor and Support classes. 
org.geotools.wfs   
org.geotools.xml.gml   
 

Uses of SimpleFeatureCollection in org.geotools
 

Methods in org.geotools that return SimpleFeatureCollection
 SimpleFeatureCollection GML.decodeFeatureCollection(InputStream in)
           
 

Methods in org.geotools with parameters of type SimpleFeatureCollection
 void GML.encode(OutputStream out, SimpleFeatureCollection collection)
           
 

Uses of SimpleFeatureCollection in org.geotools.arcsde.data
 

Classes in org.geotools.arcsde.data that implement SimpleFeatureCollection
 class ArcSdeFeatureCollection
          FeatureCollection implementation that works over an ArcSDEFeatureReader or one of the decorators over it returned by ArcSDEDataStore#getFeatureReader(Query, Session, boolean).
 

Methods in org.geotools.arcsde.data that return SimpleFeatureCollection
 SimpleFeatureCollection ArcSdeFeatureSource.getFeatures()
           
 SimpleFeatureCollection ArcSdeFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection ArcSdeFeatureSource.getFeatures(Query query)
           
 

Uses of SimpleFeatureCollection in org.geotools.coverage.grid.io
 

Methods in org.geotools.coverage.grid.io that return SimpleFeatureCollection
 SimpleFeatureCollection GranuleSource.getGranules(Query q)
          Retrieves granules, in the form of a SimpleFeatureCollection, based on a Query.
 

Methods in org.geotools.coverage.grid.io with parameters of type SimpleFeatureCollection
 void GranuleStore.addGranules(SimpleFeatureCollection granules)
          Add all the granules from the specified collection to this GranuleStore.
 

Uses of SimpleFeatureCollection in org.geotools.data
 

Classes in org.geotools.data that implement SimpleFeatureCollection
 class DefaultFeatureResults
          Generic "results" of a query, class.
 

Methods in org.geotools.data that return SimpleFeatureCollection
 SimpleFeatureCollection DefaultFeatureResults.collection()
           
static SimpleFeatureCollection DataUtilities.collection(FeatureReader<SimpleFeatureType,SimpleFeature> reader)
          Copies the provided reader into a FeatureCollection, reader will be closed.
static SimpleFeatureCollection DataUtilities.collection(List<SimpleFeature> list)
          Copies the provided features into a FeatureCollection.
static SimpleFeatureCollection DataUtilities.collection(SimpleFeature feature)
          Copies the provided features into a FeatureCollection.
static SimpleFeatureCollection DataUtilities.collection(SimpleFeature[] features)
          Copies the provided features into a FeatureCollection.
static SimpleFeatureCollection DataUtilities.collection(SimpleFeatureIterator reader)
          Copies the provided reader into a FeatureCollection, reader will be closed.
 SimpleFeatureCollection CachingFeatureSource.getFeatures()
          Deprecated.  
 SimpleFeatureCollection AbstractFeatureSource.getFeatures()
          Retrieve all Features.
 SimpleFeatureCollection CachingFeatureSource.getFeatures(Filter filter)
          Deprecated.  
 SimpleFeatureCollection AbstractFeatureSource.getFeatures(Filter filter)
          Retrieve all Feature matching the Filter.
 SimpleFeatureCollection CachingFeatureSource.getFeatures(Query query)
          Deprecated.  
 SimpleFeatureCollection AbstractFeatureSource.getFeatures(Query query)
          Provides an interface to for the Results of a Query.
static SimpleFeatureCollection DataUtilities.simple(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
          A safe cast to SimpleFeatureCollection; that will introduce a wrapper if it has to.
 

Constructors in org.geotools.data with parameters of type SimpleFeatureCollection
CollectionFeatureReader(SimpleFeatureCollection featuresArg, SimpleFeatureType typeArg)
          Create a new instance.
 

Uses of SimpleFeatureCollection in org.geotools.data.collection
 

Classes in org.geotools.data.collection that implement SimpleFeatureCollection
protected  class CollectionFeatureSource.SubCollection
          SubCollection for CollectionFeatureSource.
 class ListFeatureCollection
          FeatureCollection implementation wrapping around a java.util.List.
 class SpatialIndexFeatureCollection
          FeatureCollection used to stage information for display using a SpatialIndex.
 class TreeSetFeatureCollection
          Origional implementation of FeatureCollection using a TreeMap for internal storage.
 

Fields in org.geotools.data.collection declared as SimpleFeatureCollection
protected  SimpleFeatureCollection CollectionFeatureSource.collection
           
 

Methods in org.geotools.data.collection that return SimpleFeatureCollection
 SimpleFeatureCollection TreeSetFeatureCollection.collection()
           
 SimpleFeatureCollection CollectionFeatureSource.getFeatures()
           
 SimpleFeatureCollection SpatialIndexFeatureSource.getFeatures()
           
 SimpleFeatureCollection CollectionFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection SpatialIndexFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection CollectionFeatureSource.getFeatures(Query query)
           
 SimpleFeatureCollection SpatialIndexFeatureSource.getFeatures(Query query)
           
 SimpleFeatureCollection CollectionFeatureSource.SubCollection.sort(SortBy order)
           
 SimpleFeatureCollection SpatialIndexFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection ListFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection TreeSetFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection CollectionFeatureSource.SubCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection SpatialIndexFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection ListFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection TreeSetFeatureCollection.subCollection(Filter filter)
          Will return an optimized subCollection based on access to the origional MemoryFeatureCollection.
 

Constructors in org.geotools.data.collection with parameters of type SimpleFeatureCollection
CollectionFeatureSource.SubCollection(Query query, SimpleFeatureCollection features)
           
CollectionFeatureSource(SimpleFeatureCollection collection)
           
ListFeatureCollection(SimpleFeatureCollection copy)
          Create a ListFeatureCollection around the provided list.
SpatialIndexFeatureCollection(SimpleFeatureCollection copy)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.complex.xml
 

Subinterfaces of SimpleFeatureCollection in org.geotools.data.complex.xml
 interface XmlFeatureCollection
           
 

Uses of SimpleFeatureCollection in org.geotools.data.crs
 

Classes in org.geotools.data.crs that implement SimpleFeatureCollection
 class ForceCoordinateSystemFeatureResults
          ForceCoordinateSystemFeatureResults provides a CoordinateReferenceSystem for FeatureTypes.
 class ReprojectFeatureResults
          ReprojectFeatureReader provides a reprojection for FeatureTypes.
 

Uses of SimpleFeatureCollection in org.geotools.data.directory
 

Methods in org.geotools.data.directory that return SimpleFeatureCollection
 SimpleFeatureCollection DirectoryFeatureSource.getFeatures()
           
 SimpleFeatureCollection DirectoryFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection DirectoryFeatureSource.getFeatures(Query query)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.gen
 

Classes in org.geotools.data.gen that implement SimpleFeatureCollection
 class PreGeneralizedFeatureCollection
           
 

Fields in org.geotools.data.gen declared as SimpleFeatureCollection
protected  SimpleFeatureCollection PreGeneralizedFeatureCollection.backendCollection
           
 

Methods in org.geotools.data.gen that return SimpleFeatureCollection
 SimpleFeatureCollection PreGeneralizedFeatureSource.getFeatures()
           
 SimpleFeatureCollection PreGeneralizedFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection PreGeneralizedFeatureSource.getFeatures(Query query)
           
 SimpleFeatureCollection PreGeneralizedFeatureCollection.sort(SortBy sortBy)
           
 SimpleFeatureCollection PreGeneralizedFeatureCollection.subCollection(Filter filter)
           
 

Constructors in org.geotools.data.gen with parameters of type SimpleFeatureCollection
PreGeneralizedFeatureCollection(SimpleFeatureCollection backendCollection, SimpleFeatureType featureType, int[] indexMapping, String geomPropertyName, String backendGeomPropertyName)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.memory
 

Classes in org.geotools.data.memory that implement SimpleFeatureCollection
 class MemoryFeatureCollection
          Implement a SimpleFeatureCollection by burning memory!
 

Constructors in org.geotools.data.memory with parameters of type SimpleFeatureCollection
MemoryDataStore(SimpleFeatureCollection collection)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.simple
 

Methods in org.geotools.data.simple that return SimpleFeatureCollection
 SimpleFeatureCollection SimpleFeatureStore.getFeatures()
           
 SimpleFeatureCollection SimpleFeatureSource.getFeatures()
           
 SimpleFeatureCollection SimpleFeatureStore.getFeatures(Filter filter)
           
 SimpleFeatureCollection SimpleFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection SimpleFeatureStore.getFeatures(Query query)
           
 SimpleFeatureCollection SimpleFeatureSource.getFeatures(Query query)
           
 SimpleFeatureCollection SimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection SimpleFeatureCollection.subCollection(Filter filter)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.store
 

Classes in org.geotools.data.store that implement SimpleFeatureCollection
 class ContentFeatureCollection
          A FeatureCollection that completely delegates to a backing FetaureSource#getReader
 class DataFeatureCollection
          A starting point for implementing FeatureCollection's backed onto a FeatureReader.
 class EmptyFeatureCollection
           
 class ReprojectingFeatureCollection
          SimpleFeatureCollection decorator that reprojects the default geometry.
 class ReTypingFeatureCollection
          SimpleFeatureCollection decorator which decorates a feature collection "re-typing" its schema based on attributes specified in a query.
 

Methods in org.geotools.data.store that return SimpleFeatureCollection
 SimpleFeatureCollection ContentFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection ContentFeatureCollection.sort(SortBy sort)
           
 SimpleFeatureCollection ReprojectingFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection DataFeatureCollection.sort(SortBy order)
          Construct a sorted view of this content.
 SimpleFeatureCollection DataFeatureCollection.sort(SortBy2 order)
          Allows for "Advanced" sort capabilities specific to the GeoTools platform!
 SimpleFeatureCollection ContentFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection ReprojectingFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection DataFeatureCollection.subCollection(Filter filter)
          Will return an optimized subCollection based on access to the origional FeatureSource.
 

Constructors in org.geotools.data.store with parameters of type SimpleFeatureCollection
ReprojectingFeatureCollection(SimpleFeatureCollection delegate, CoordinateReferenceSystem target)
           
ReprojectingFeatureCollection(SimpleFeatureCollection delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target)
           
ReTypingFeatureCollection(SimpleFeatureCollection delegate, SimpleFeatureType featureType)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.transform
 

Methods in org.geotools.data.transform that return SimpleFeatureCollection
 SimpleFeatureCollection TransformFeatureSource.getFeatures()
           
 SimpleFeatureCollection TransformFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection TransformFeatureSource.getFeatures(Query query)
           
 

Uses of SimpleFeatureCollection in org.geotools.data.view
 

Methods in org.geotools.data.view that return SimpleFeatureCollection
 SimpleFeatureCollection DefaultView.getFeatures()
          Implement getFeatures.
 SimpleFeatureCollection DefaultView.getFeatures(Filter filter)
          Implement getFeatures.
 SimpleFeatureCollection DefaultView.getFeatures(Query query)
          Implement getFeatures.
 

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

Classes in org.geotools.data.wfs.v1_0_0 that implement SimpleFeatureCollection
static class WFSFeatureSource.WFSFeatureResults
           
 

Methods in org.geotools.data.wfs.v1_0_0 that return SimpleFeatureCollection
 SimpleFeatureCollection WFSFeatureSource.getFeatures()
           
 SimpleFeatureCollection WFSFeatureSource.getFeatures(Filter filter)
           
 SimpleFeatureCollection WFSFeatureSource.getFeatures(Query query)
           
 

Uses of SimpleFeatureCollection in org.geotools.feature
 

Classes in org.geotools.feature that implement SimpleFeatureCollection
 class DefaultFeatureCollection
          A basic implementation of SimpleFeatureCollection which use a TreeMap for its internal storage.
 

Methods in org.geotools.feature that return SimpleFeatureCollection
 SimpleFeatureCollection DefaultFeatureCollection.collection()
           
protected  SimpleFeatureCollection DefaultFeatureCollections.createCollection()
          Creates a new DefaultFeatureCollection.
protected abstract  SimpleFeatureCollection FeatureCollections.createCollection()
          Deprecated. Subclasses must implement this to return a new SimpleFeatureCollection object.
protected  SimpleFeatureCollection DefaultFeatureCollections.createCollection(String id)
           
protected abstract  SimpleFeatureCollection FeatureCollections.createCollection(String id)
          Deprecated. Subclasses must implement this to return a new SimpleFeatureCollection object with a particular id.
protected  SimpleFeatureCollection DefaultFeatureCollections.createCollection(String id, SimpleFeatureType ft)
           
static SimpleFeatureCollection FeatureCollections.newCollection()
          Deprecated. Use new DefaultFeatureCollection(null,null)
static SimpleFeatureCollection FeatureCollections.newCollection(String id)
          Deprecated. Use new DefaultFeatureCollection( id, null )
 SimpleFeatureCollection DefaultFeatureCollection.sort(SortBy order)
          Construct a sorted view of this content.
 SimpleFeatureCollection DefaultFeatureCollection.sort(SortBy2 order)
          Allows for "Advanced" sort capabilities specific to the GeoTools platform!
 SimpleFeatureCollection DefaultFeatureCollection.subCollection(Filter filter)
          Will return an optimized subCollection based on access to the origional MemoryFeatureCollection.
 

Uses of SimpleFeatureCollection in org.geotools.feature.collection
 

Subinterfaces of SimpleFeatureCollection in org.geotools.feature.collection
 interface RandomFeatureAccess
          Access Feature content using Feature "Id".
 

Classes in org.geotools.feature.collection that implement SimpleFeatureCollection
 class AbstractFeatureCollection
          Implement a feature collection just based on provision of an Iterator.
 class AdaptorFeatureCollection
          Implement a feature collection just based on provision of iterator.
 class BaseSimpleFeatureCollection
           
 class DecoratingSimpleFeatureCollection
          A FeatureCollection which completely delegates to another FeatureCollection.
 class FilteringSimpleFeatureCollection
          Decorates a feature collection with one that filters content.
 class MaxSimpleFeatureCollection
          SimpleFeatureCollection wrapper which limits the number of features returned.
 class SortedSimpleFeatureCollection
          A wrapper that will sort a feature collection using a size sensitive algorithm, in main memory for small collections, using secondary memory otherwise.
 class SubFeatureCollection
          Reasonable default implementation for subCollection making use of parent features() and provided Filter.
 class SubFeatureList
          Default implementation of FeatureCollection.sort(SortBy).
 

Fields in org.geotools.feature.collection declared as SimpleFeatureCollection
protected  SimpleFeatureCollection SubFeatureCollection.collection
          Original Collection
protected  SimpleFeatureCollection DecoratingSimpleFeatureCollection.delegate
          the delegate
 

Methods in org.geotools.feature.collection that return SimpleFeatureCollection
 SimpleFeatureCollection AdaptorFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection DecoratingSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection MaxSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection FilteringSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection AbstractFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection BaseSimpleFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection SubFeatureCollection.sort(SortBy order)
           
 SimpleFeatureCollection AdaptorFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection DecoratingSimpleFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection MaxSimpleFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection FilteringSimpleFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection AbstractFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection BaseSimpleFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection SubFeatureCollection.subCollection(Filter filter)
           
 SimpleFeatureCollection AdaptorFeatureCollection.subList(Filter filter)
           
 SimpleFeatureCollection SubFeatureList.subList(Filter subfilter)
          Sublist of this sublist!
 

Constructors in org.geotools.feature.collection with parameters of type SimpleFeatureCollection
DecoratingSimpleFeatureCollection(SimpleFeatureCollection delegate)
           
FilteringSimpleFeatureCollection(SimpleFeatureCollection delegate, Filter filter)
           
MaxSimpleFeatureCollection(SimpleFeatureCollection delegate, long max)
           
MaxSimpleFeatureCollection(SimpleFeatureCollection delegate, long start, long max)
           
SortedSimpleFeatureCollection(SimpleFeatureCollection delegate, SortBy[] sort)
           
SubFeatureCollection(SimpleFeatureCollection collection)
           
SubFeatureCollection(SimpleFeatureCollection collection, Filter subfilter)
           
SubFeatureList(SimpleFeatureCollection list, Filter filter)
           
SubFeatureList(SimpleFeatureCollection list, Filter filter, SortBy subSort)
          Create a simple SubFeatureList with the provided filter.
SubFeatureList(SimpleFeatureCollection list, List order)
           
SubFeatureList(SimpleFeatureCollection list, SortBy sort)
           
 

Uses of SimpleFeatureCollection in org.geotools.feature.visitor
 

Methods in org.geotools.feature.visitor with parameters of type SimpleFeatureCollection
static Object CollectionUtil.calc(SimpleFeatureCollection collection, FeatureCalc calculator)
           
 void StandardDeviationVisitor.init(SimpleFeatureCollection collection)
           
 void CountVisitor.init(SimpleFeatureCollection collection)
           
 void MaxVisitor.init(SimpleFeatureCollection collection)
           
 void AverageVisitor.init(SimpleFeatureCollection collection)
           
 void UniqueVisitor.init(SimpleFeatureCollection collection)
           
 void SumVisitor.init(SimpleFeatureCollection collection)
           
 void QuantileListVisitor.init(SimpleFeatureCollection collection)
           
 void MinVisitor.init(SimpleFeatureCollection collection)
           
 void MedianVisitor.init(SimpleFeatureCollection collection)
           
 

Uses of SimpleFeatureCollection in org.geotools.gce.imagemosaic.catalog
 

Methods in org.geotools.gce.imagemosaic.catalog that return SimpleFeatureCollection
 SimpleFeatureCollection GranuleCatalogSource.getGranules(Query q)
           
abstract  SimpleFeatureCollection GranuleCatalog.getGranules(Query q)
           
 

Methods in org.geotools.gce.imagemosaic.catalog with parameters of type SimpleFeatureCollection
 void GranuleCatalogStore.addGranules(SimpleFeatureCollection granules)
           
 

Uses of SimpleFeatureCollection in org.geotools.geopkg
 

Methods in org.geotools.geopkg with parameters of type SimpleFeatureCollection
 void GeoPackage.add(FeatureEntry entry, SimpleFeatureCollection collection)
          Adds a new feature dataset to the geopackage.
 

Uses of SimpleFeatureCollection in org.geotools.graph.util.delaunay
 

Methods in org.geotools.graph.util.delaunay with parameters of type SimpleFeatureCollection
static DelaunayNode[] AutoClustUtils.featureCollectionToNodeArray(SimpleFeatureCollection fc)
           
 DelaunayNode[] DelaunayTriangulator.featuresToNodes(SimpleFeatureCollection fc)
           
 void DelaunayTriangulator.setFeatureCollection(SimpleFeatureCollection data)
           
 

Uses of SimpleFeatureCollection in org.geotools.map
 

Methods in org.geotools.map that return SimpleFeatureCollection
 SimpleFeatureCollection GridReaderLayer.toFeatureCollection()
           
 SimpleFeatureCollection GridCoverageLayer.toFeatureCollection()
           
abstract  SimpleFeatureCollection RasterLayer.toFeatureCollection()
          Supply a FeatureCollection indicating where the raster is located, we ask that the features use the same coordinate reference system as your raster data and form an outline or foot print of the information you have available.
 

Uses of SimpleFeatureCollection in org.geotools.renderer.lite
 

Classes in org.geotools.renderer.lite that implement SimpleFeatureCollection
 class IndexedFeatureResults
          IndexedFeatureReader
 

Methods in org.geotools.renderer.lite that return SimpleFeatureCollection
 SimpleFeatureCollection IndexedFeatureResults.collection()
           
 

Constructors in org.geotools.renderer.lite with parameters of type SimpleFeatureCollection
IndexedFeatureResults(SimpleFeatureCollection results)
           
 

Uses of SimpleFeatureCollection in org.geotools.styling
 

Methods in org.geotools.styling with parameters of type SimpleFeatureCollection
 Style StyleBuilder.buildClassifiedStyle(SimpleFeatureCollection fc, String name, String[] colors, SimpleFeatureType schema)
          given a feature collection and an array of colours build a style with the given number of classes on the named column
 

Uses of SimpleFeatureCollection in org.geotools.swing.table
 

Constructors in org.geotools.swing.table with parameters of type SimpleFeatureCollection
FeatureCollectionTableModel(SimpleFeatureCollection features)
          Constructor
 

Uses of SimpleFeatureCollection in org.geotools.swt.styling
 

Constructors in org.geotools.swt.styling with parameters of type SimpleFeatureCollection
SimpleStyleConfigurator(Shell parent, SimpleFeatureCollection featureCollection, Style style)
          Construct SimpleStyleConfigurator.
 

Uses of SimpleFeatureCollection in org.geotools.swt.styling.simple
 

Fields in org.geotools.swt.styling.simple declared as SimpleFeatureCollection
protected  SimpleFeatureCollection AbstractSimpleConfigurator.featureCollection
           
 

Constructors in org.geotools.swt.styling.simple with parameters of type SimpleFeatureCollection
AbstractSimpleConfigurator(Shell parent, SimpleFeatureCollection featureCollection, Style style)
          Construct AbstractSimpleConfigurator.
 

Uses of SimpleFeatureCollection in org.geotools.swt.tool
 

Methods in org.geotools.swt.tool that return SimpleFeatureCollection
 SimpleFeatureCollection VectorLayerHelper.getInfo(DirectPosition2D pos, Object... params)
          Get feature data at the given position.
 

Uses of SimpleFeatureCollection in org.geotools.validation
 

Methods in org.geotools.validation with parameters of type SimpleFeatureCollection
 void Validator.featureValidation(String dsid, SimpleFeatureCollection features, ValidationResults results)
          featureValidation Purpose:
DOCUMENT ME!!
 void ValidationProcessor.runFeatureTests(String dsID, SimpleFeatureCollection collection, ValidationResults results)
          runFeatureTests Change: Uses a SimpleFeatureIterator now instead of a FeatureCollection.
 

Uses of SimpleFeatureCollection in org.geotools.wfs
 

Classes in org.geotools.wfs that implement SimpleFeatureCollection
 class CompositeFeatureCollection
          Wraps multiple feature collections into a single.
 

Uses of SimpleFeatureCollection in org.geotools.xml.gml
 

Classes in org.geotools.xml.gml that implement SimpleFeatureCollection
 class GMLFeatureCollection
           
 



Copyright © 1996-2014 Geotools. All Rights Reserved.