Class 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 Detail

      • ThreadSafeFeatureCollectionWrapper

        public ThreadSafeFeatureCollectionWrapper​(FeatureCollection featureCollection)
    • Method Detail

      • getEnvelope

        public org.locationtech.jts.geom.Envelope getEnvelope()
        Description copied from interface: FeatureCollection
        Returns the bounds of this collection.
        Specified by:
        getEnvelope in interface FeatureCollection
        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 interface FeatureCollection
        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 interface FeatureCollection
        Returns:
        whether or not the size of this collection is 0
      • 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 interface FeatureCollection
        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 interface FeatureCollection
        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 interface FeatureCollection
      • 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 interface FeatureCollection
      • remove

        public void remove​(Feature feature)
        Description copied from interface: FeatureCollection
        Removes a feature from this collection.
        Specified by:
        remove in interface FeatureCollection
        Parameters:
        feature - a Feature to remove from this collection