By looking at REST API docs for /deleteFeature here:
https://developers.arcgis.com/rest/services-reference/enterprise/delete-features.htm
it seems that deletes can be performed in multiple ways:
- by giving objectid(s) of feature(s) to delete
- by specifying geometry to overlap/intersect features to delete with
- by specifying SQL-like 'where' clause which will select features to delete
However, by looking at Javadocs, it seems that ArcGIS Runtime for Java supports only first method using deleteFeature(s)Async on FeatureTable.
Are 2 and 3 unsupported or am I missing something?