Package com.esri.arcgisruntime.mapping
Interface GeoElement
- 
- All Known Implementing Classes:
 ArcGISFeature,EncFeature,Feature,Graphic,KmlPlacemark,RasterCell,WmsFeature
public interface GeoElementCommon interface for entities which possess both a geometry and attribute table.- Since:
 - 100.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>getAttributes()Gets a java.util.Map of all the available attributes as name value pairs.GeometrygetGeometry()Gets the geometry of this geoelement.voidsetGeometry(Geometry geometry)Sets the GeoElement's geometry. 
 - 
 
- 
- 
Method Detail
- 
getAttributes
java.util.Map<java.lang.String,java.lang.Object> getAttributes()
Gets a java.util.Map of all the available attributes as name value pairs.Attribute values are returned as Object instances, but the underlying value type is based on the
Field.Type.- Returns:
 - all the available attributes as name value pairs.
 - Since:
 - 100.0.0
 
 
- 
getGeometry
Geometry getGeometry()
Gets the geometry of this geoelement.- Returns:
 - the geometry of this geoelement
 - Since:
 - 100.0.0
 
 
- 
setGeometry
void setGeometry(Geometry geometry)
Sets the GeoElement's geometry.- Parameters:
 geometry- the geometry to set- Since:
 - 100.0.0
 
 
 - 
 
 -