com.esri.arcgis.geoprocessing.tools.geocodingtools
Class StandardizeAddresses

java.lang.Object
  extended by com.esri.arcgis.geoprocessing.AbstractGPTool
      extended by com.esri.arcgis.geoprocessing.tools.geocodingtools.StandardizeAddresses
All Implemented Interfaces:
GPTool

public class StandardizeAddresses
extends AbstractGPTool

Standardizes the address information in a table or feature class. The Standardize Addresses tool is contained in the Geocoding Tools tool box.

Usage tips:


Field Summary
 
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
vals
 
Constructor Summary
StandardizeAddresses()
          Creates the Standardize Addresses tool with defaults.
StandardizeAddresses(java.lang.Object inAddressData, java.lang.Object inInputAddressFields, java.lang.Object inAddressLocatorStyle, java.lang.Object inOutputAddressFields, java.lang.Object outAddressData)
          Creates the Standardize Addresses tool with the required parameters.
 
Method Summary
 java.lang.Object getInAddressData()
          Returns the Input Address Data parameter of this tool .
 java.lang.Object getInAddressLocatorStyle()
          Returns the Address Locator Style parameter of this tool .
 java.lang.Object getInInputAddressFields()
          Returns the Input Address Fields parameter of this tool .
 java.lang.Object getInOutputAddressFields()
          Returns the Output Address Fields parameter of this tool .
 java.lang.String getInRelationshipType()
          Returns the Dynamic Output Data.
 java.lang.Object getOutAddressData()
          Returns the Output Address Data parameter of this tool .
 java.lang.String getToolboxAlias()
          Returns the alias of the tool box containing this tool.
 java.lang.String getToolboxName()
          Returns the name of the tool box containing this tool.
 java.lang.String getToolName()
          Returns the name of this tool.
 void setInAddressData(java.lang.Object inAddressData)
          Sets the Input Address Data parameter of this tool .
 void setInAddressLocatorStyle(java.lang.Object inAddressLocatorStyle)
          Sets the Address Locator Style parameter of this tool .
 void setInInputAddressFields(java.lang.Object inInputAddressFields)
          Sets the Input Address Fields parameter of this tool .
 void setInOutputAddressFields(java.lang.Object inOutputAddressFields)
          Sets the Output Address Fields parameter of this tool .
 void setInRelationshipType(java.lang.String inRelationshipType)
          Sets the Dynamic Output Data.
 void setOutAddressData(java.lang.Object outAddressData)
          Sets the Output Address Data parameter of this tool .
 
Methods inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
getParameterValues, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

StandardizeAddresses

public StandardizeAddresses()
Creates the Standardize Addresses tool with defaults.

Initializes the array of tool parameters with the default values specified when the tool was created.


StandardizeAddresses

public StandardizeAddresses(java.lang.Object inAddressData,
                            java.lang.Object inInputAddressFields,
                            java.lang.Object inAddressLocatorStyle,
                            java.lang.Object inOutputAddressFields,
                            java.lang.Object outAddressData)
Creates the Standardize Addresses tool with the required parameters.

Initializes the array of tool parameters with the values as specified for the required parameters and with the default values for the other parameters.

Parameters:
inAddressData - the table or feature class containing address information that you want to standardize.
inInputAddressFields - the set of fields in the input table or feature class that, when concatenated, forms the address to be standardized.
inAddressLocatorStyle - the address locator style to use to standardize the address information in the input table or feature class.
inOutputAddressFields - the set of standardized address fields to include in the output table or feature class.
outAddressData - the output table or feature class to create containing the standardized address fields.
Method Detail

getInAddressData

public java.lang.Object getInAddressData()
Returns the Input Address Data parameter of this tool . This parameter is the table or feature class containing address information that you want to standardize. This is a required parameter.

Returns:
the Input Address Data

setInAddressData

public void setInAddressData(java.lang.Object inAddressData)
Sets the Input Address Data parameter of this tool . This parameter is the table or feature class containing address information that you want to standardize. This is a required parameter.

Parameters:
inAddressData - the table or feature class containing address information that you want to standardize.

getInInputAddressFields

public java.lang.Object getInInputAddressFields()
Returns the Input Address Fields parameter of this tool . This parameter is the set of fields in the input table or feature class that, when concatenated, forms the address to be standardized. This is a required parameter.

Returns:
the Input Address Fields

setInInputAddressFields

public void setInInputAddressFields(java.lang.Object inInputAddressFields)
Sets the Input Address Fields parameter of this tool . This parameter is the set of fields in the input table or feature class that, when concatenated, forms the address to be standardized. This is a required parameter.

Parameters:
inInputAddressFields - the set of fields in the input table or feature class that, when concatenated, forms the address to be standardized.

getInAddressLocatorStyle

public java.lang.Object getInAddressLocatorStyle()
Returns the Address Locator Style parameter of this tool . This parameter is the address locator style to use to standardize the address information in the input table or feature class. This is a required parameter.

Returns:
the Address Locator Style

setInAddressLocatorStyle

public void setInAddressLocatorStyle(java.lang.Object inAddressLocatorStyle)
Sets the Address Locator Style parameter of this tool . This parameter is the address locator style to use to standardize the address information in the input table or feature class. This is a required parameter.

Parameters:
inAddressLocatorStyle - the address locator style to use to standardize the address information in the input table or feature class.

getInOutputAddressFields

public java.lang.Object getInOutputAddressFields()
Returns the Output Address Fields parameter of this tool . This parameter is the set of standardized address fields to include in the output table or feature class. This is a required parameter.

Returns:
the Output Address Fields

setInOutputAddressFields

public void setInOutputAddressFields(java.lang.Object inOutputAddressFields)
Sets the Output Address Fields parameter of this tool . This parameter is the set of standardized address fields to include in the output table or feature class. This is a required parameter.

Parameters:
inOutputAddressFields - the set of standardized address fields to include in the output table or feature class.

getOutAddressData

public java.lang.Object getOutAddressData()
Returns the Output Address Data parameter of this tool . This parameter is the output table or feature class to create containing the standardized address fields. This is a required parameter.

Returns:
the Output Address Data

setOutAddressData

public void setOutAddressData(java.lang.Object outAddressData)
Sets the Output Address Data parameter of this tool . This parameter is the output table or feature class to create containing the standardized address fields. This is a required parameter.

Parameters:
outAddressData - the output table or feature class to create containing the standardized address fields.

getInRelationshipType

public java.lang.String getInRelationshipType()
Returns the Dynamic Output Data. parameter of this tool . This parameter is indicates whether to create a static or dynamic output dataset. This is an optional parameter.

Returns:
the Dynamic Output Data.

setInRelationshipType

public void setInRelationshipType(java.lang.String inRelationshipType)
Sets the Dynamic Output Data. parameter of this tool . This parameter is indicates whether to create a static or dynamic output dataset. This is an optional parameter.

Parameters:
inRelationshipType - indicates whether to create a static or dynamic output dataset.

getToolName

public java.lang.String getToolName()
Returns the name of this tool.

Returns:
the tool name

getToolboxName

public java.lang.String getToolboxName()
Returns the name of the tool box containing this tool.

Returns:
the tool box name

getToolboxAlias

public java.lang.String getToolboxAlias()
Returns the alias of the tool box containing this tool.

Returns:
the tool box alias