public class

FeatureEditResult

extends Object
implements Serializable
java.lang.Object
   ↳ com.esri.core.map.FeatureEditResult

Class Overview

The results of a feature edit such as add, update or delete.

Summary

Public Constructors
FeatureEditResult()
Public Methods
static FeatureEditResult fromJson(JsonParser parser)
Decodes objects from JSON representation.
FeatureEditError getError()
Gets the error message if the operation is failed.
String getGlobalId()
Gets the globalId of the FeatureEditResult.
int getObjectId()
Gets the ObjectId of the FeatureEditResult.
boolean isSuccess()
Returns true if the operation is success.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public FeatureEditResult ()

Public Methods

public static FeatureEditResult fromJson (JsonParser parser)

Decodes objects from JSON representation.

Parameters
parser the Jackson parser holding the JSON data.
Returns
  • the decoded object from JSON representation.
Throws
Exception

public FeatureEditError getError ()

Gets the error message if the operation is failed.

Returns
  • Returns the error.

public String getGlobalId ()

Gets the globalId of the FeatureEditResult.

Returns
  • Returns the globalId.

public int getObjectId ()

Gets the ObjectId of the FeatureEditResult.

Returns
  • Returns the ObjectId.

public boolean isSuccess ()

Returns true if the operation is success.

Returns
  • Returns the success.

public String toString ()