| java.lang.Object org.geotools.data.postgis.ModifiedFeatureIds
ModifiedFeatureIds | public class ModifiedFeatureIds (Code) | | Contains the three sets of feature ids that identify those changes occurred between two versions
in the versioned datastore
author: aaime since: 2.4 |
getCreated | public Set getCreated()(Code) | | Contains all ids for features that were created after startVersion (a feature may be both in
this set and in deleted if it was created and then deleted)
|
getDeleted | public Set getDeleted()(Code) | | Contains all ids for features that were deleted before endVersion (a feature may be both in
this set and in created if it was created and then deleted)
|
getModified | public Set getModified()(Code) | | Contains all ids for features that were already there at startVersion, were modified before
endVersion and were not deleted.
|
|
|