com.esri.arcgis.location
Interface IGeocodedFeatureClass

All Superinterfaces:
Serializable
All Known Implementing Classes:
GeocodedFeatureClassExtension

public interface IGeocodedFeatureClass
extends Serializable

Provides access to members for automatically maintaining a geocoded feature class.

When To Use

Use the IGeocodedFeatureClass interface to automatically maintain a geocoded FeatureClass. In general, you don't need to use this interface, unless you have created your own feature class extension for geocoded FeatureClasses.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also:
GeocodedFeature

Method Summary
 void geocodeAddress(IObject address, IFeature result)
          Updates the geocoded feature.
 boolean needsUpdate(IObject address, IFeature shape)
          Indicates if a geocoded feature needs to be updated.
 

Method Detail

needsUpdate

boolean needsUpdate(IObject address,
                    IFeature shape)
                    throws IOException,
                           AutomationException
Indicates if a geocoded feature needs to be updated.

Remarks

The address parameter is an Object from the address Table.

The result parameter is a Feature representing the geocoded location of the Object.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
address - A reference to a com.esri.arcgis.geodatabase.IObject (in)
shape - A reference to a com.esri.arcgis.geodatabase.IFeature (in)
Returns:
The bNeedsUpdate
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
GeocodedFeature

geocodeAddress

void geocodeAddress(IObject address,
                    IFeature result)
                    throws IOException,
                           AutomationException
Updates the geocoded feature.

Remarks

This method returns a boolean value that indicates if the geometry of a GeocodedFeature needs to be updated.

The address parameter is an Object from the address Table.

The Shape parameter is a Feature representing the geocoded location of the Object.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
address - A reference to a com.esri.arcgis.geodatabase.IObject (in)
result - A reference to a com.esri.arcgis.geodatabase.IFeature (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
GeocodedFeature