public interface FeatureCollection<T extends FeatureType,F extends Feature>
Where possible FeatureCollection is method compatible with Collection
.
SimpleFeatureCollection house rules:
FeatureId
FeatureCollection provides streaming access with the following restriction on the use of
FeatureIterator
: You must call FeatureIterator.close()
. This allows
FeatureCollection to clean up any operating system resources used to access information.
Example (safe) use:
FeatureIterator iterator = featureCollection.features();
try {
while( iterator.hasNext() ){
Feature feature = iterator.next();
System.out.println( feature.getID() );
}
}
finally {
iterator.close();
}
And in Java 7:
try ( FeatureIterator iterator = featureCollection.features() ){
while( iterator.hasNext() ){
Feature feature = iterator.next();
System.out.println( feature.getID() );
}
}
Handy Tip: Although many resource backed collections will choose to release resources at when the iterator has reached the end of its contents this is not something you should rely on.
Auto close: Try and close up resources when you can detect that an Iterator is no longer in use.
Lazy Connect: FeatureCollection is used in two fashions, as a result set, where each iterator acts as a cursor over the content. Also as a predefined query which can be refined further. An example is using featureCollection.subCollection( Filter ) or featureCollection.sort( SortBy ) before listing features out of a FeatureCollection.
org.geotools.Feature
Modifier and Type | Method and Description |
---|---|
void |
accepts(FeatureVisitor visitor,
ProgressListener progress)
Visit the contents of a feature collection.
|
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> o) |
FeatureIterator<F> |
features()
Obtain a FeatureIterator
|
ReferencedEnvelope |
getBounds()
Get the total bounds of this collection which is calculated by doing a union of the bounds of
each feature inside of it
|
String |
getID()
ID used when serializing to GML
|
T |
getSchema()
The schema for the child feature members of this collection.
|
boolean |
isEmpty()
Returns true if this feature collection contains no features.
|
int |
size()
Please note this operation may be expensive when working with remote content.
|
FeatureCollection<T,F> |
sort(SortBy order)
Obtained sorted contents.
|
FeatureCollection<T,F> |
subCollection(Filter filter)
SimpleFeatureCollection "view" indicated by provided filter.
|
Object[] |
toArray() |
<O> O[] |
toArray(O[] a) |
FeatureIterator<F> features()
The implementation of FeatureIterator must adhere to the rules of fail-fast concurrent
modification. In addition (to allow for resource backed collections) the
FeatureIterator.close()
method must be called.
Example use:
FeatureIterator iterator=collection.features();
try {
while( iterator.hasNext() ){
Feature feature = iterator.next();
System.out.println( feature.getID() );
}
}
finally {
iterator.close();
}
GML Note: The contents of this iterator are considered to be defined by featureMember tags (and/or the single allowed FeatureMembers tag). Please see getFeatureType for more details.
T getSchema()
Represents the most general FeatureType in common to all the features in this collection.
String getID()
void accepts(FeatureVisitor visitor, ProgressListener progress) throws IOException
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.
visitor
- Closure applied to each feature in turn.progress
- Used to report progress, may be used to interrupt the operationIOException
FeatureCollection<T,F> subCollection(Filter filter)
The contents of the returned SimpleFeatureCollection are determined by applying the provider Filter to the entire contents of this FeatureCollection. The result is "live" and modifications will be shared.
This method is used cut down on the number of filter based methods required for a useful SimpleFeatureCollection construct. The FeatureCollections returned really should be considered as a temporary "view" used to control the range of a removeAll, or modify operation.
Example Use:
collection.subCollection( filter ).clear();
The above recommended use is agreement with the Collections API precident of List.subList(
start, end ).
The results of subCollection:
filter
- FeatureList
FeatureCollection<T,F> sort(SortBy order)
This method may not be supported by all implementations, consider the use of FeatureSource.features( Query ).
order
- Sort orderReferencedEnvelope getBounds()
boolean contains(Object o)
Collection.contains(Object)
boolean containsAll(Collection<?> o)
Collection.containsAll(Collection)
boolean isEmpty()
int size()
Collection.size()
Object[] toArray()
Collection.toArray()
<O> O[] toArray(O[] a)
Collection.toArray(Object[])
Copyright © 1996–2019 Geotools. All rights reserved.