Package com.esri.arcgisruntime.data
Class LocalFeatureEdit
- java.lang.Object
-
- com.esri.arcgisruntime.data.LocalFeatureEdit
-
public final class LocalFeatureEdit extends Object
An object that represents a pending feature edit specifying its edit operation and most recent edit time.- Since:
- 100.12.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Calendar
getEditDateTime()
Gets the date and time when the most recent edit occurred.Feature
getFeature()
Gets the edited feature.EditResult.EditOperation
getOperation()
Gets the type of the feature edit.
-
-
-
Method Detail
-
getEditDateTime
public Calendar getEditDateTime()
Gets the date and time when the most recent edit occurred.- Returns:
- the date and time when the most recent edit occurred
- Since:
- 100.12.0
-
getFeature
public Feature getFeature()
Gets the edited feature.- Returns:
- the edited feature
- Since:
- 100.12.0
-
getOperation
public EditResult.EditOperation getOperation()
Gets the type of the feature edit.A newly added feature will keep the
EditResult.EditOperation.ADD
edit operation even if it has been updated since being added.- Returns:
- the type of the feature edit
- Since:
- 100.12.0
-
-