Class ThreadSafeFeatureCollectionWrapper
- java.lang.Object
-
- com.vividsolutions.jump.workbench.model.cache.ThreadSafeFeatureCollectionWrapper
-
- All Implemented Interfaces:
FeatureCollection
,Iterable<Feature>
public class ThreadSafeFeatureCollectionWrapper extends Object implements FeatureCollection
Thread safety is achieved by (1) synchronizing the methods, and (2) creating new Collections in #getFeatures, #query, and #iterator to prevent ConcurrentModificationExceptions.
-
-
Constructor Summary
Constructors Constructor Description ThreadSafeFeatureCollectionWrapper(FeatureCollection featureCollection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Feature feature)
Adds a feature to this collection.void
addAll(Collection<Feature> features)
Adds multiple features to this collection.void
clear()
Removes all features from this collection.org.locationtech.jts.geom.Envelope
getEnvelope()
Returns the bounds of this collection.List<Feature>
getFeatures()
Returns an unmodifiable List of the features in this collectionFeatureSchema
getFeatureSchema()
Returns information about this FeatureCollectionboolean
isEmpty()
Returns whether this collection has no features.Iterator<Feature>
iterator()
Returns an Iterator over the featuresList<Feature>
query(org.locationtech.jts.geom.Envelope envelope)
A quick search for features, using an envelope comparison.void
remove(Feature feature)
Removes a feature from this collection.Collection<Feature>
remove(org.locationtech.jts.geom.Envelope env)
Removes the features which intersect the given envelopevoid
removeAll(Collection<Feature> features)
Removes multiple features from this collection.int
size()
Returns the number of features in this collection.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
ThreadSafeFeatureCollectionWrapper
public ThreadSafeFeatureCollectionWrapper(FeatureCollection featureCollection)
-
-
Method Detail
-
getFeatureSchema
public FeatureSchema getFeatureSchema()
Description copied from interface:FeatureCollection
Returns information about this FeatureCollection- Specified by:
getFeatureSchema
in interfaceFeatureCollection
- Returns:
- the types of the attributes of the features in this collection
-
getEnvelope
public org.locationtech.jts.geom.Envelope getEnvelope()
Description copied from interface:FeatureCollection
Returns the bounds of this collection.- Specified by:
getEnvelope
in interfaceFeatureCollection
- Returns:
- the smallest Envelope enclosing all the Features in this collection
-
size
public int size()
Description copied from interface:FeatureCollection
Returns the number of features in this collection.- Specified by:
size
in interfaceFeatureCollection
- Returns:
- the number of features in this collection
-
isEmpty
public boolean isEmpty()
Description copied from interface:FeatureCollection
Returns whether this collection has no features.- Specified by:
isEmpty
in interfaceFeatureCollection
- Returns:
- whether or not the size of this collection is 0
-
getFeatures
public List<Feature> getFeatures()
Description copied from interface:FeatureCollection
Returns an unmodifiable List of the features in this collection- Specified by:
getFeatures
in interfaceFeatureCollection
- Returns:
- a read-only view of all the features
-
iterator
public Iterator<Feature> iterator()
Description copied from interface:FeatureCollection
Returns an Iterator over the features- Specified by:
iterator
in interfaceFeatureCollection
- Specified by:
iterator
in interfaceIterable<Feature>
- Returns:
- an Iterator over the features
-
query
public List<Feature> query(org.locationtech.jts.geom.Envelope envelope)
Description copied from interface:FeatureCollection
A quick search for features, using an envelope comparison.- Specified by:
query
in interfaceFeatureCollection
- Parameters:
envelope
- the envelope to query against- Returns:
- features whose envelopes intersect the given envelope
-
add
public void add(Feature feature)
Description copied from interface:FeatureCollection
Adds a feature to this collection.- Specified by:
add
in interfaceFeatureCollection
- Parameters:
feature
- a Feature to add to the end of this collection
-
addAll
public void addAll(Collection<Feature> features)
Description copied from interface:FeatureCollection
Adds multiple features to this collection. To be preferred over #add for adding multiple features, because in some systems (like the JUMP Workbench) fewer events will be fired.- Specified by:
addAll
in interfaceFeatureCollection
-
removeAll
public void removeAll(Collection<Feature> features)
Description copied from interface:FeatureCollection
Removes multiple features from this collection. To be preferred over #remove for removing multiple features, because in some systems (like the JUMP Workbench) fewer events will be fired.- Specified by:
removeAll
in interfaceFeatureCollection
-
remove
public void remove(Feature feature)
Description copied from interface:FeatureCollection
Removes a feature from this collection.- Specified by:
remove
in interfaceFeatureCollection
- Parameters:
feature
- a Feature to remove from this collection
-
clear
public void clear()
Description copied from interface:FeatureCollection
Removes all features from this collection.- Specified by:
clear
in interfaceFeatureCollection
-
remove
public Collection<Feature> remove(org.locationtech.jts.geom.Envelope env)
Description copied from interface:FeatureCollection
Removes the features which intersect the given envelope- Specified by:
remove
in interfaceFeatureCollection
- Returns:
- the removed features
-
-