Class BaseFeatureCollection<T extends FeatureType,F extends Feature>
- Object
- 
- BaseFeatureCollection<T,F>
 
- 
- All Implemented Interfaces:
- FeatureCollection<T,F>
 - Direct Known Subclasses:
- BaseSimpleFeatureCollection,- ProcessingCollection,- WFSContentComplexFeatureCollection
 
 public abstract class BaseFeatureCollection<T extends FeatureType,F extends Feature> extends Object implements FeatureCollection<T,F> Implement a feature collection just based on provision of aFeatureIterator.This implementation asks you to implement: - features()
- 
 This is the direct decentent of the origional AbstractFeatureCollectionand represents the easiest way to package your content as a FeatureCollection.As this class provides no optimization, it is strongly recommended that you implement the following methods (which require a whole collection traversal): - size()
- {@link #getBounds()
 
 - Author:
- Jody Garnett (LISAsoft)
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedBaseFeatureCollection()protectedBaseFeatureCollection(T schema)protectedBaseFeatureCollection(T schema, String id)
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaccepts(FeatureVisitor visitor, ProgressListener progress)Visit the contents of a feature collection.booleancontains(Object o)Returns true if this collection contains the specified element.booleancontainsAll(Collection<?> c)Returns true if this collection contains all of the elements in the specified collection.abstract FeatureIterator<F>features()Subclasses required to implement this method to traverse FeatureCollection contents.ReferencedEnvelopegetBounds()Full collection traversal to obtain bounds of FeatureCollection.StringgetID()ID used when serializing to GMLTgetSchema()The schema for the child feature members of this collection.booleanisEmpty()Returns true if this feature collection contains no features.intsize()Returns the number of elements in this collection.FeatureCollection<T,F>sort(SortBy order)Obtained sorted contents, only implemented for SimpleFeature at present.FeatureCollection<T,F>subCollection(Filter filter)Convenience implementation that just wraps this collection into aFilteringFeatureCollection.Object[]toArray()Array of all the elements.<O> O[]toArray(O[] a)
 
- 
- 
- 
Field Detail- 
idprotected String id id used when serialized to gml
 - 
schemaprotected T extends FeatureType schema 
 
- 
 - 
Method Detail- 
getIDpublic String getID() Description copied from interface:FeatureCollectionID used when serializing to GML- Specified by:
- getIDin interface- FeatureCollection<T extends FeatureType,F extends Feature>
 
 - 
getSchemapublic T getSchema() Description copied from interface:FeatureCollectionThe schema for the child feature members of this collection.Represents the most general FeatureType in common to all the features in this collection. - For a collection backed by a shapefiles (or database tables) the FeatureType returned by getSchema() will complete describe each and every child in the collection.
- For mixed content FeatureCollections you will need to check the FeatureType of each Feature as it is retrived from the collection
- The degenerate case returns the "_Feature" FeatureType, where the only thing known is that the contents are Features.
 - Specified by:
- getSchemain interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- FeatureType describing the "common" schema to all child features of this collection
 
 - 
featurespublic abstract FeatureIterator<F> features() Subclasses required to implement this method to traverse FeatureCollection contents.Note that FeatureIterator.close()is available to clean up after any resource use required during traversal.- Specified by:
- featuresin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- A FeatureIterator.
 
 - 
containspublic boolean contains(Object o) Returns true if this collection contains the specified element. .This implementation iterates over the elements in the collection, checking each element in turn for equality with the specified element. - Specified by:
- containsin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Parameters:
- o- object to be checked for containment in this collection.
- Returns:
- true if this collection contains the specified element.
- See Also:
- Collection.contains(Object)
 
 - 
containsAllpublic boolean containsAll(Collection<?> c) Returns true if this collection contains all of the elements in the specified collection.- Specified by:
- containsAllin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Parameters:
- c- collection to be checked for containment in this collection.
- Returns:
- true if this collection contains all of the elements in the specified collection.
- Throws:
- NullPointerException- if the specified collection is null.
- See Also:
- contains(Object)
 
 - 
isEmptypublic boolean isEmpty() Description copied from interface:FeatureCollectionReturns true if this feature collection contains no features.- Specified by:
- isEmptyin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- true if this collection contains no elements.
 
 - 
toArraypublic Object[] toArray() Array of all the elements.- Specified by:
- toArrayin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- an array containing all of the elements in this collection.
- See Also:
- Collection.toArray()
 
 - 
toArraypublic <O> O[] toArray(O[] a) - Specified by:
- toArrayin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- See Also:
- Collection.toArray(Object[])
 
 - 
acceptspublic void accepts(FeatureVisitor visitor, ProgressListener progress) throws IOException Description copied from interface:FeatureCollectionVisit the contents of a feature collection.The order of traversal is dependent on the FeatureCollection implementation; some collections are able to make efficient use of an internal index in order to quickly visit features located in the same region. - Specified by:
- acceptsin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Parameters:
- visitor- Closure applied to each feature in turn.
- progress- Used to report progress, may be used to interrupt the operation
- Throws:
- IOException
 
 - 
subCollectionpublic FeatureCollection<T,F> subCollection(Filter filter) Convenience implementation that just wraps this collection into aFilteringFeatureCollection. Subclasses might want to override this in case the filter can be cascaded to their data sources.- Specified by:
- subCollectionin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- SimpleFeatureCollection identified as subset.
- See Also:
- FeatureList
 
 - 
sortpublic FeatureCollection<T,F> sort(SortBy order) Obtained sorted contents, only implemented for SimpleFeature at present.This method only supports SimpleFeature at present, consider use of FeatureSource.features( Query ). - Specified by:
- sortin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Parameters:
- order- Sort order
- Returns:
- FeatureCollection sorted in the indicated order
 
 - 
sizepublic int size() Returns the number of elements in this collection.- Specified by:
- sizein interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- Number of items, or Interger.MAX_VALUE
- See Also:
- Collection.size()
 
 - 
getBoundspublic ReferencedEnvelope getBounds() Full collection traversal to obtain bounds of FeatureCollection. Subclasees are strong encouraged to override this expensive method (even if just to implement caching).- Specified by:
- getBoundsin interface- FeatureCollection<T extends FeatureType,F extends Feature>
- Returns:
- An Envelope containing the total bounds of this collection.
 
 
- 
 
-