Class FeatureDataset
java.lang.Object
com.vividsolutions.jump.feature.FeatureDataset
- All Implemented Interfaces:
FeatureCollection, Serializable, Iterable<Feature>
Default implementation of FeatureCollection.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFeatureDataset(FeatureSchema featureSchema) Creates a FeatureDataset.FeatureDataset(Collection<Feature> newFeatures, FeatureSchema featureSchema) Creates a FeatureDataset, initialized with a group of Features. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds a feature to this collection.voidaddAll(Collection<Feature> features) Adds multiple features to this collection.voidclear()Removes all features from this collection.booleanReturns whether or not this Feature is in this collectionorg.locationtech.jts.geom.EnvelopeBecause the envelope is cached, the envelope may be incorrect if you later change a Feature's geometry using Feature#setGeometry.getFeature(int index) Returns the Feature at the given index (zero-based).Returns an unmodifiable List of the features in this collectionReturns information about this FeatureCollectionvoidClears the cached envelope of this FeatureDataset's Features.booleanisEmpty()Returns whether this collection has no features.iterator()Returns an Iterator over the featuresquery(org.locationtech.jts.geom.Envelope envelope) A quick search for features, using an envelope comparison.voidRemoves a feature from this collection.remove(org.locationtech.jts.geom.Envelope env) Removes the features which intersect the given envelopevoidRemoves multiple features from this collection.intsize()Returns the number of features in this collection.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Iterable
forEach, spliterator
-
Constructor Details
-
FeatureDataset
Creates a FeatureDataset, initialized with a group of Features.- Parameters:
newFeatures- an initial group of features to add to this FeatureDatasetfeatureSchema- the types of the attributes of the features in this collection
-
FeatureDataset
Creates a FeatureDataset.- Parameters:
featureSchema- the types of the attributes of the features in this collection
-
-
Method Details
-
getFeature
Returns the Feature at the given index (zero-based). -
getFeatureSchema
Description copied from interface:FeatureCollectionReturns information about this FeatureCollection- Specified by:
getFeatureSchemain interfaceFeatureCollection- Returns:
- the types of the attributes of the features in this collection
-
getEnvelope
public org.locationtech.jts.geom.Envelope getEnvelope()Because the envelope is cached, the envelope may be incorrect if you later change a Feature's geometry using Feature#setGeometry.- Specified by:
getEnvelopein interfaceFeatureCollection- Returns:
- the smallest Envelope enclosing all the Features in this collection
-
getFeatures
Description copied from interface:FeatureCollectionReturns an unmodifiable List of the features in this collection- Specified by:
getFeaturesin interfaceFeatureCollection- Returns:
- a read-only view of all the features
-
isEmpty
public boolean isEmpty()Description copied from interface:FeatureCollectionReturns whether this collection has no features.- Specified by:
isEmptyin interfaceFeatureCollection- Returns:
- whether or not the size of this collection is 0
-
query
Description copied from interface:FeatureCollectionA quick search for features, using an envelope comparison.- Specified by:
queryin interfaceFeatureCollection- Parameters:
envelope- the envelope to query against- Returns:
- a List containing the features whose envelopes intersect the given envelope
-
add
Description copied from interface:FeatureCollectionAdds a feature to this collection.- Specified by:
addin interfaceFeatureCollection- Parameters:
feature- a Feature to add to the end of this collection
-
contains
Returns whether or not this Feature is in this collection- Returns:
- true if this feature is in this collection, as determined using Feature#equals
-
remove
Removes the features which intersect the given envelope- Specified by:
removein interfaceFeatureCollection- Returns:
- the removed features
-
remove
Description copied from interface:FeatureCollectionRemoves a feature from this collection.- Specified by:
removein interfaceFeatureCollection- Parameters:
feature- a Feature to remove from this collection
-
clear
public void clear()Removes all features from this collection.- Specified by:
clearin interfaceFeatureCollection
-
size
public int size()Description copied from interface:FeatureCollectionReturns the number of features in this collection.- Specified by:
sizein interfaceFeatureCollection- Returns:
- the number of features in this collection
-
iterator
Description copied from interface:FeatureCollectionReturns an Iterator over the features- Specified by:
iteratorin interfaceFeatureCollection- Specified by:
iteratorin interfaceIterable<Feature>- Returns:
- an Iterator over the features
-
invalidateEnvelope
public void invalidateEnvelope()Clears the cached envelope of this FeatureDataset's Features. Call this method when a Feature's Geometry is modified. -
addAll
Description copied from interface:FeatureCollectionAdds 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:
addAllin interfaceFeatureCollection
-
removeAll
Description copied from interface:FeatureCollectionRemoves 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:
removeAllin interfaceFeatureCollection
-