Uses of Interface
org.geotools.feature.FeatureCollection

Packages that use FeatureCollection
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.crs Provides support for the OGC Catalog Specification. 
org.geotools.data.gen   
org.geotools.data.jdbc   
org.geotools.data.memory   
org.geotools.data.postgis.collection   
org.geotools.data.store   
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.filter   
org.geotools.gml Reads GML files and translates them into Java objects. 
org.geotools.gml.producer   
org.geotools.graph.util.delaunay   
org.geotools.gui.swing.table A set of TableModel implementations. 
org.geotools.map List of layers to be rendered. 
org.geotools.renderer Basic interface for rendering of features. 
org.geotools.renderer.lite A simple renderer implementation. 
org.geotools.styling Allows for symbolization of geospatial data. 
org.geotools.validation Defines the Validation Processor and Support classes. 
org.geotools.xml.gml   
 

Uses of FeatureCollection in org.geotools.arcsde.data
 

Classes in org.geotools.arcsde.data that implement FeatureCollection
 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 FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> ArcSdeFeatureSource.getFeatures()
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> ArcSdeFeatureSource.getFeatures(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> ArcSdeFeatureSource.getFeatures(Query query)
           
 

Methods in org.geotools.arcsde.data with parameters of type FeatureCollection
 List<FeatureId> ArcSdeFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
           
 

Uses of FeatureCollection in org.geotools.data
 

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

Methods in org.geotools.data that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureResults.collection()
           
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.collection(FeatureIterator<SimpleFeature> reader)
          Copies the provided reader into a FeatureCollection, reader will be closed.
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.collection(FeatureReader<SimpleFeatureType,SimpleFeature> reader)
          Copies the provided reader into a FeatureCollection, reader will be closed.
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.collection(List<SimpleFeature> list)
          Copies the provided features into a FeatureCollection.
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.collection(SimpleFeature feature)
          Copies the provided features into a FeatureCollection.
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.collection(SimpleFeature[] features)
          Copies the provided features into a FeatureCollection.
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource.getFeatures()
          Retrieve all Features.
 FeatureCollection<T,F> FeatureSource.getFeatures()
          Loads all features from the datasource into the return FeatureResults.
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource.getFeatures(Filter filter)
          Retrieve all Feature matching the Filter.
 FeatureCollection<T,F> FeatureSource.getFeatures(Filter filter)
          Loads features from the datasource into the returned FeatureResults, based on the passed filter.
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource.getFeatures(Query query)
          Provides an interface to for the Results of a Query.
 FeatureCollection<T,F> FeatureSource.getFeatures(Query query)
          Loads features from the datasource into the returned FeatureResults, based on the passed query.
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.results(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Returns collection if non empty.
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.results(SimpleFeature[] featureArray)
           
 

Methods in org.geotools.data with parameters of type FeatureCollection
 List<FeatureId> AbstractFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
           
 List<FeatureId> FeatureStore.addFeatures(FeatureCollection<T,F> collection)
          Adds all features from the passed feature collection to the datasource.
static Envelope DataUtilities.bounds(FeatureCollection<? extends FeatureType,? extends Feature> collection)
          Manually calculates the bounds of a feature collection.
static DefaultFeatureCollection DataUtilities.collection(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
          Copies the provided features into a FeatureCollection.
static Set<String> DataUtilities.fidSet(FeatureCollection<?,?> featureCollection)
          Copies the feature ids from each and every feature into a set.
static List<SimpleFeature> DataUtilities.list(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
          Copies the provided fetaures into a List.
static FeatureReader<SimpleFeatureType,SimpleFeature> DataUtilities.reader(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Adapt a collection to a reader for use with FeatureStore.setFeatures( reader ).
static FeatureCollection<SimpleFeatureType,SimpleFeature> DataUtilities.results(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Returns collection if non empty.
static FeatureSource<SimpleFeatureType,SimpleFeature> DataUtilities.source(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          DOCUMENT ME!
 

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

Uses of FeatureCollection in org.geotools.data.collection
 

Methods in org.geotools.data.collection that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> CollectionDataStore.getCollection()
          Returns the feature collection held by this data store
 

Constructors in org.geotools.data.collection with parameters of type FeatureCollection
CollectionDataStore(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Builds a data store wrapper on top of a feature collection
 

Uses of FeatureCollection in org.geotools.data.crs
 

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

Methods in org.geotools.data.crs that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> ReprojectFeatureResults.getOrigin()
          Returns the feature results wrapped by this reprojecting feature results
 FeatureCollection<SimpleFeatureType,SimpleFeature> ForceCoordinateSystemFeatureResults.getOrigin()
          Returns the feature results wrapped by this ForceCoordinateSystemFeatureResults
 

Constructors in org.geotools.data.crs with parameters of type FeatureCollection
ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem forcedCS)
           
ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem forcedCS, boolean forceOnlyMissing)
           
ReprojectFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem destinationCS)
          Creates a new reprojecting feature results
 

Uses of FeatureCollection in org.geotools.data.gen
 

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

Fields in org.geotools.data.gen declared as FeatureCollection
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> PreGeneralizedFeatureCollection.backendCollection
           
 

Methods in org.geotools.data.gen that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> PreGeneralizedFeatureSource.getFeatures()
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> PreGeneralizedFeatureSource.getFeatures(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> PreGeneralizedFeatureSource.getFeatures(Query query)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> PreGeneralizedFeatureCollection.sort(SortBy sortBy)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> PreGeneralizedFeatureCollection.subCollection(Filter filter)
           
 

Methods in org.geotools.data.gen with parameters of type FeatureCollection
 boolean PreGeneralizedFeatureCollection.addAll(FeatureCollection arg0)
           
 

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

Uses of FeatureCollection in org.geotools.data.jdbc
 

Classes in org.geotools.data.jdbc that implement FeatureCollection
 class JDBCFeatureCollection
           
 

Methods in org.geotools.data.jdbc that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> JDBCFeatureSource.getFeatures()
          Retrieve all Features
 FeatureCollection<SimpleFeatureType,SimpleFeature> JDBCFeatureSource.getFeatures(Filter filter)
          Retrieve all Feature matching the Filter
 FeatureCollection<SimpleFeatureType,SimpleFeature> JDBCFeatureSource.getFeatures(Query request)
          Provides an interface to for the Resutls of a Query.
 

Methods in org.geotools.data.jdbc with parameters of type FeatureCollection
 List<FeatureId> JDBCFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
           
 

Uses of FeatureCollection in org.geotools.data.memory
 

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

Methods in org.geotools.data.memory with parameters of type FeatureCollection
 void MemoryDataStore.addFeatures(FeatureCollection collection)
           
 

Constructors in org.geotools.data.memory with parameters of type FeatureCollection
MemoryDataStore(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
           
 

Uses of FeatureCollection in org.geotools.data.postgis.collection
 

Classes in org.geotools.data.postgis.collection that implement FeatureCollection
 class PostgisFeatureCollection
          FeatureCollection for PostGIS datastores.
 

Uses of FeatureCollection in org.geotools.data.store
 

Classes in org.geotools.data.store that implement FeatureCollection
 class ContentFeatureCollection
          A FeatureCollection that completly delegates to a backing FetaureSource.
 class DataFeatureCollection
          A starting point for implementing FeatureCollection's backed onto a FeatureReader.
 class EmptyFeatureCollection
           
 class FilteringFeatureCollection<T extends FeatureType,F extends Feature>
          Decorates a feature collection with one that filters content.
 class MaxFeaturesFeatureCollection<T extends FeatureType,F extends Feature>
          FeatureCollection wrapper which limits the number of features returned.
 class ReprojectingFeatureCollection
          FeatureCollection decorator that reprojects the default geometry.
 class ReTypingFeatureCollection
          FeatureCollection 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 FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource2.getFeatures(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource2.getFeatures(Query query)
           
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource2.reproject(FeatureCollection<SimpleFeatureType,SimpleFeature> features, CoordinateReferenceSystem source, CoordinateReferenceSystem target)
          Template method for reprojecting a feature collection from a source crs to a target crs.
 FeatureCollection<SimpleFeatureType,SimpleFeature> ContentFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> ContentFeatureCollection.sort(SortBy sort)
           
 FeatureCollection<T,F> MaxFeaturesFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> ReprojectingFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> DataFeatureCollection.sort(SortBy order)
          Construct a sorted view of this content.
 FeatureCollection<T,F> FilteringFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> DataFeatureCollection.sort(SortBy2 order)
          Allows for "Advanced" sort capabilities specific to the GeoTools platform!
 FeatureCollection<SimpleFeatureType,SimpleFeature> ContentFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<T,F> MaxFeaturesFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> ReprojectingFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> DataFeatureCollection.subCollection(Filter filter)
          Will return an optimized subCollection based on access to the origional FeatureSource.
 FeatureCollection<T,F> FilteringFeatureCollection.subCollection(Filter filter)
           
 

Methods in org.geotools.data.store with parameters of type FeatureCollection
 boolean ContentFeatureCollection.addAll(FeatureCollection c)
           
 boolean DataFeatureCollection.addAll(FeatureCollection resource)
           
 List<FeatureId> ContentFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Adds a collection of features to the store.
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureSource2.reproject(FeatureCollection<SimpleFeatureType,SimpleFeature> features, CoordinateReferenceSystem source, CoordinateReferenceSystem target)
          Template method for reprojecting a feature collection from a source crs to a target crs.
 

Constructors in org.geotools.data.store with parameters of type FeatureCollection
FilteringFeatureCollection(FeatureCollection<T,F> delegate, Filter filter)
           
MaxFeaturesFeatureCollection(FeatureCollection<T,F> delegate, long max)
           
ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, CoordinateReferenceSystem target)
           
ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target)
           
ReTypingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, SimpleFeatureType featureType)
           
 

Uses of FeatureCollection in org.geotools.data.view
 

Methods in org.geotools.data.view that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultView.getFeatures()
          Implement getFeatures.
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultView.getFeatures(Filter filter)
          Implement getFeatures.
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultView.getFeatures(Query query)
          Implement getFeatures.
 

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

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

Methods in org.geotools.data.wfs.v1_0_0 that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> WFSFeatureSource.getFeatures()
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> WFSFeatureSource.getFeatures(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> WFSFeatureSource.getFeatures(Query query)
           
 

Methods in org.geotools.data.wfs.v1_0_0 with parameters of type FeatureCollection
 List<FeatureId> WFSFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
           
 

Uses of FeatureCollection in org.geotools.feature
 

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

Methods in org.geotools.feature that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollection.collection()
           
protected abstract  FeatureCollection<SimpleFeatureType,SimpleFeature> FeatureCollections.createCollection()
          Subclasses must implement this to return a new FeatureCollection object.
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollections.createCollection()
          Creates a new DefaultFeatureCollection.
protected abstract  FeatureCollection<SimpleFeatureType,SimpleFeature> FeatureCollections.createCollection(String id)
          Subclasses must implement this to return a new FeatureCollection object with a particular id.
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollections.createCollection(String id)
           
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollections.createCollection(String id, SimpleFeatureType ft)
           
 FeatureCollection<? extends FeatureType,? extends Feature> CollectionEvent.getCollection()
          provides access to the FeatureCollection which fired the event
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeature.getParent()
          Gets the feature collection this feature is stored in.
static FeatureCollection<SimpleFeatureType,SimpleFeature> FeatureCollections.newCollection()
          create a new FeatureCollection using the current default factory.
static FeatureCollection<SimpleFeatureType,SimpleFeature> FeatureCollections.newCollection(String id)
          Creates a new FeatureCollection with a particular id using the current default factory.
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollection.sort(SortBy order)
          Construct a sorted view of this content.
 FeatureCollection<T,F> FeatureCollection.sort(SortBy order)
          collection.subCollection( myFilter ).sort( {"foo","bar"} ); collection.subCollection( myFilter ).sort( "bar" ).sort("foo")
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollection.sort(SortBy2 order)
          Allows for "Advanced" sort capabilities specific to the GeoTools platform!
 FeatureCollection<SimpleFeatureType,SimpleFeature> DefaultFeatureCollection.subCollection(Filter filter)
          Will return an optimized subCollection based on access to the origional MemoryFeatureCollection.
 FeatureCollection<T,F> FeatureCollection.subCollection(Filter filter)
          FeatureCollection "view" indicated by provided filter.
 

Methods in org.geotools.feature with parameters of type FeatureCollection
 boolean DefaultFeatureCollection.addAll(FeatureCollection collection)
           
 boolean FeatureCollection.addAll(FeatureCollection<? extends T,? extends F> resource)
           
 void FeatureCollectionIteration.Handler.endFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> fc)
          The handler is done visiting a FeatureCollection.
 void FeatureCollectionIteration.Handler.handleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> fc)
          The handler is visiting a FeatureCollection.
static void FeatureCollectionIteration.iteration(FeatureCollectionIteration.Handler handler, FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          A convienience method for obtaining a new iteration and calling iterate.
 void DefaultFeature.setParent(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Sets the parent collection this feature is stored in, if it is not already set.
protected  void FeatureCollectionIteration.walker(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Perform the iterative behavior on the given collection.
 

Constructors in org.geotools.feature with parameters of type FeatureCollection
CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> collection, FeatureEvent event)
           
CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> source, SimpleFeature[] involvedFeatures, int type)
          Constructs a new CollectionEvent.
DefaultFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          This constructor should not be used by client code.
FeatureCollectionIteration(FeatureCollectionIteration.Handler handler, FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Create a new FeatureCollectionIteration with the given handler and collection.
 

Uses of FeatureCollection in org.geotools.feature.collection
 

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

Classes in org.geotools.feature.collection that implement FeatureCollection
 class AbstractFeatureCollection
          Implement a feature collection just based on provision of iterator.
 class AdaptorFeatureCollection
          Implement a feature collection just based on provision of iterator.
 class DecoratingFeatureCollection<T extends FeatureType,F extends Feature>
          A FeatureCollection which completley delegates to another FeatureCollection.
 class SubFeatureCollection
          Used as a reasonable default implementation for subCollection.
 class SubFeatureList
           
 

Fields in org.geotools.feature.collection declared as FeatureCollection
protected  FeatureCollection<SimpleFeatureType,SimpleFeature> SubFeatureCollection.collection
          Original Collection
protected  FeatureCollection<T,F> DecoratingFeatureCollection.delegate
          the delegate
 

Methods in org.geotools.feature.collection that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> SubFeatureCollection.collection()
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureCollection.sort(SortBy order)
           
 FeatureCollection<T,F> DecoratingFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> SubFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AdaptorFeatureCollection.sort(SortBy order)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<T,F> DecoratingFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> SubFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AdaptorFeatureCollection.subCollection(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AbstractFeatureCollection.subList(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> AdaptorFeatureCollection.subList(Filter filter)
           
 FeatureCollection<SimpleFeatureType,SimpleFeature> SubFeatureList.subList(Filter subfilter)
          Sublist of this sublist!
 

Methods in org.geotools.feature.collection with parameters of type FeatureCollection
 boolean DecoratingFeatureCollection.addAll(FeatureCollection c)
           
 boolean AdaptorFeatureCollection.addAll(FeatureCollection c)
           
 boolean AbstractFeatureCollection.addAll(FeatureCollection<? extends SimpleFeatureType,? extends SimpleFeature> c)
           
 void AbstractFeatureVisitor.init(FeatureCollection<? extends FeatureType,? extends Feature> collection)
           
 

Constructors in org.geotools.feature.collection with parameters of type FeatureCollection
DecoratingFeatureCollection(FeatureCollection<T,F> delegate)
           
DelegateFeatureIterator(FeatureCollection<? extends FeatureType,F> collection, Iterator<F> iterator)
          Wrap the provided iterator up as a FeatureIterator.
FeatureIteratorImpl(FeatureCollection<? extends FeatureType,F> collection)
          Create a new FeatureIterator using the Iterator from the given FeatureCollection.
FilteredIterator(FeatureCollection<? extends FeatureType,F> collection, Filter filter)
           
SubFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
           
SubFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection, Filter subfilter)
           
SubFeatureList(FeatureCollection<SimpleFeatureType,SimpleFeature> list, Filter filter)
           
SubFeatureList(FeatureCollection<SimpleFeatureType,SimpleFeature> list, Filter filter, SortBy subSort)
          Create a simple SubFeatureList with the provided filter.
SubFeatureList(FeatureCollection<SimpleFeatureType,SimpleFeature> list, List order)
           
SubFeatureList(FeatureCollection<SimpleFeatureType,SimpleFeature> list, SortBy sort)
           
 

Uses of FeatureCollection in org.geotools.feature.visitor
 

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

Uses of FeatureCollection in org.geotools.filter
 

Methods in org.geotools.filter with parameters of type FeatureCollection
static void FilteringIteration.filter(FeatureCollection<SimpleFeatureType,SimpleFeature> features, Filter filter)
           
 

Constructors in org.geotools.filter with parameters of type FeatureCollection
FilteringIteration(Filter filter, FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Creates a new instance of FilteringIteration
 

Uses of FeatureCollection in org.geotools.gml
 

Constructors in org.geotools.gml with parameters of type FeatureCollection
GMLReceiver(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
          Creates a new instance of GMLReceiver
 

Uses of FeatureCollection in org.geotools.gml.producer
 

Methods in org.geotools.gml.producer with parameters of type FeatureCollection
 void FeatureTransformer.FeatureTranslator.endFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Sends sax for the ending of a feature collection.
 void FeatureTransformer.FeatureTranslator.handleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
          Prints up the gml for a featurecollection.
 

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

Methods in org.geotools.graph.util.delaunay with parameters of type FeatureCollection
static DelaunayNode[] AutoClustUtils.featureCollectionToNodeArray(FeatureCollection<SimpleFeatureType,SimpleFeature> fc)
           
 DelaunayNode[] DelaunayTriangulator.featuresToNodes(FeatureCollection<SimpleFeatureType,SimpleFeature> fc)
           
 void DelaunayTriangulator.setFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> data)
           
 

Uses of FeatureCollection in org.geotools.gui.swing.table
 

Methods in org.geotools.gui.swing.table with parameters of type FeatureCollection
 void FeatureTableModel.setFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> features)
          Sets which featureTable to represent
 

Constructors in org.geotools.gui.swing.table with parameters of type FeatureCollection
FeatureTableModel(FeatureCollection<SimpleFeatureType,SimpleFeature> features)
          Creates a new instance of FeatureTableModel based on the feature collection provided.
 

Uses of FeatureCollection in org.geotools.map
 

Methods in org.geotools.map with parameters of type FeatureCollection
 void MapContext.addLayer(FeatureCollection<SimpleFeatureType,SimpleFeature> collection, Style style)
          Add a new layer and trigger a LayerListEvent.
 void DefaultMapContext.addLayer(FeatureCollection<SimpleFeatureType,SimpleFeature> collection, Style style)
          Add a new layer and trigger a LayerListEvent.
 

Constructors in org.geotools.map with parameters of type FeatureCollection
DefaultMapLayer(FeatureCollection<SimpleFeatureType,SimpleFeature> collection, Style style)
          Creates a new instance of DefaultMapLayer using a non-emtpy feature collection as a parameter
DefaultMapLayer(FeatureCollection<SimpleFeatureType,SimpleFeature> collection, Style style, String title)
          Creates a new instance of DefaultMapLayer using a non-emtpy feature collection as a parameter
 

Uses of FeatureCollection in org.geotools.renderer
 

Methods in org.geotools.renderer with parameters of type FeatureCollection
 void Renderer.render(FeatureCollection<? extends FeatureType,? extends Feature> fc, Envelope viewport, Style style)
          Renders the provided features using the specified style.
 

Uses of FeatureCollection in org.geotools.renderer.lite
 

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

Methods in org.geotools.renderer.lite that return FeatureCollection
 FeatureCollection<SimpleFeatureType,SimpleFeature> IndexedFeatureResults.collection()
           
 

Constructors in org.geotools.renderer.lite with parameters of type FeatureCollection
IndexedFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results)
           
 

Uses of FeatureCollection in org.geotools.styling
 

Methods in org.geotools.styling with parameters of type FeatureCollection
 Style StyleBuilder.buildClassifiedStyle(FeatureCollection<SimpleFeatureType,SimpleFeature> 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 FeatureCollection in org.geotools.validation
 

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

Uses of FeatureCollection in org.geotools.xml.gml
 

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



Copyright © 1996-2009 Geotools. All Rights Reserved.