Class FeatureUpdateRecorder
- java.lang.Object
-
- org.locationtech.jts.jump.feature.FeatureUpdateRecorder
-
public class FeatureUpdateRecorder extends Object
Records update transactions onFeature
s, and can apply them to aFeatureCollection
.
-
-
Constructor Summary
Constructors Constructor Description FeatureUpdateRecorder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FeatureDataset
applyUpdates(FeatureCollection fc)
Applies updates to an existing FeatureCollection.int
getCount()
void
update(Feature origFeat, Feature newFeat)
-
-
-
Method Detail
-
getCount
public int getCount()
-
applyUpdates
public FeatureDataset applyUpdates(FeatureCollection fc)
Applies updates to an existing FeatureCollection. The FeatureDataset returned will contain all the Features in the original dataset which do not have updates, as well as the new versions of updated features
-
-