Package com.esri.arcgisruntime.data
Class FeatureEditResult
- java.lang.Object
-
- com.esri.arcgisruntime.data.EditResult
-
- com.esri.arcgisruntime.data.FeatureEditResult
-
public final class FeatureEditResult extends EditResult
An object that represents the results of an attempt to push an feature update to a feature service. You need to pass this object to all feature edit result methods. Represents the result of an edit operation to a feature, such as after applying the edit operation to a service by callingServiceFeatureTable.applyEditsAsync()
or syncing results for a table in a geodatabase from aSyncGeodatabaseJob
.FeatureEditResult contains
EditResult
s for each attachment edit.- Since:
- 100.0.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.esri.arcgisruntime.data.EditResult
EditResult.EditOperation
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<EditResult>
getAttachmentResults()
Gets a list of the results of edits to the attachments of this feature.-
Methods inherited from class com.esri.arcgisruntime.data.EditResult
getEditOperation, getError, getGlobalId, getObjectId, hasCompletedWithErrors
-
-
-
-
Method Detail
-
getAttachmentResults
public java.util.List<EditResult> getAttachmentResults()
Gets a list of the results of edits to the attachments of this feature.- Returns:
- an unmodifiable list containing the result of all the attachment edits of this feature. If no attachments were edited, this returns an empty list
- Since:
- 100.0.0
-
-