|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.core.tasks.ags.identify.IdentifyResult
public class IdentifyResult
When the IdentifyTask class performs the identify operation and receives the result for an ArcGIS Server instance, it
will only partially decode the results returned. It is the IdentifyResult class that will fully decode the results to
make them usable in your application code.
Each feature that is identified will take one position in the array (2 features will be found in positions [0] and
[1] of the array returned).
For each feature that is returned in the result, you will be able to obtain the following information:
When working with the ArcGIS API for Android, you should never have the need to instantiate this class. It will always be an object that is returned back to you and you will work with the various methods to obtain the information as needed by your application.
Method Summary | |
---|---|
boolean |
equals(Object obj)
|
Map<String,Object> |
getAttributes()
Returns the map of attributes for the identified feature. |
String |
getDisplayFieldName()
Returns the display field (also called an attribute) name for the identified feature. |
Geometry |
getGeometry()
Returns the geometry of the identified feature. |
int |
getLayerId()
Returns the layer ID of the layer that contains the identified feature. |
String |
getLayerName()
Returns the layer Name of the layer that contains the identified feature. |
Object |
getValue()
Returns the value of the display field name for the identified feature. |
int |
hashCode()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public Geometry getGeometry()
public int getLayerId()
public String getLayerName()
public Object getValue()
public String getDisplayFieldName()
public Map<String,Object> getAttributes()
public int hashCode()
hashCode
in class Object
public boolean equals(Object obj)
equals
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |