com.esri.arcgis.geoprocessing.tools.coveragetools
Class Identity

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

public class Identity
extends AbstractGPTool

Computes the geometric intersection of two coverages. All features of the input coverage, as well as those features of the identity coverage that overlap the input coverage, are preserved in the output coverage. The Identity tool is contained in the Coverage Tools tool box.

Usage tips:


Field Summary
 
Fields inherited from class com.esri.arcgis.geoprocessing.AbstractGPTool
vals
 
Constructor Summary
Identity()
          Creates the Identity tool with defaults.
Identity(java.lang.Object inCover, java.lang.Object identityCover, java.lang.Object outCover)
          Creates the Identity tool with the required parameters.
 
Method Summary
 java.lang.String getFeatureType()
          Returns the Feature Type parameter of this tool .
 double getFuzzyTolerance()
          Returns the Fuzzy Tolerance parameter of this tool .
 java.lang.Object getIdentityCover()
          Returns the Identity Coverage parameter of this tool .
 java.lang.Object getInCover()
          Returns the Input Coverage parameter of this tool .
 java.lang.String getJoinAttributes()
          Returns the Join attributes parameter of this tool .
 java.lang.Object getOutCover()
          Returns the Output Coverage 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 setFeatureType(java.lang.String featureType)
          Sets the Feature Type parameter of this tool .
 void setFuzzyTolerance(double fuzzyTolerance)
          Sets the Fuzzy Tolerance parameter of this tool .
 void setIdentityCover(java.lang.Object identityCover)
          Sets the Identity Coverage parameter of this tool .
 void setInCover(java.lang.Object inCover)
          Sets the Input Coverage parameter of this tool .
 void setJoinAttributes(java.lang.String joinAttributes)
          Sets the Join attributes parameter of this tool .
 void setOutCover(java.lang.Object outCover)
          Sets the Output Coverage 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

Identity

public Identity()
Creates the Identity tool with defaults.

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


Identity

public Identity(java.lang.Object inCover,
                java.lang.Object identityCover,
                java.lang.Object outCover)
Creates the Identity 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:
inCover - the coverage that will be overlaid with the identity coverage.
identityCover - the coverage that will be identitied with the input coverage. Must have polygon features.
outCover - the coverage to be created.
Method Detail

getInCover

public java.lang.Object getInCover()
Returns the Input Coverage parameter of this tool . This parameter is the coverage that will be overlaid with the identity coverage. This is a required parameter.

Returns:
the Input Coverage

setInCover

public void setInCover(java.lang.Object inCover)
Sets the Input Coverage parameter of this tool . This parameter is the coverage that will be overlaid with the identity coverage. This is a required parameter.

Parameters:
inCover - the coverage that will be overlaid with the identity coverage.

getIdentityCover

public java.lang.Object getIdentityCover()
Returns the Identity Coverage parameter of this tool . This parameter is the coverage that will be identitied with the input coverage. Must have polygon features. This is a required parameter.

Returns:
the Identity Coverage

setIdentityCover

public void setIdentityCover(java.lang.Object identityCover)
Sets the Identity Coverage parameter of this tool . This parameter is the coverage that will be identitied with the input coverage. Must have polygon features. This is a required parameter.

Parameters:
identityCover - the coverage that will be identitied with the input coverage. Must have polygon features.

getOutCover

public java.lang.Object getOutCover()
Returns the Output Coverage parameter of this tool . This parameter is the coverage to be created. This is a required parameter.

Returns:
the Output Coverage

setOutCover

public void setOutCover(java.lang.Object outCover)
Sets the Output Coverage parameter of this tool . This parameter is the coverage to be created. This is a required parameter.

Parameters:
outCover - the coverage to be created.

getFeatureType

public java.lang.String getFeatureType()
Returns the Feature Type parameter of this tool . This parameter is the feature class from the input coverage that will be used. This is an optional parameter.

Returns:
the Feature Type

setFeatureType

public void setFeatureType(java.lang.String featureType)
Sets the Feature Type parameter of this tool . This parameter is the feature class from the input coverage that will be used. This is an optional parameter.

Parameters:
featureType - the feature class from the input coverage that will be used.

getFuzzyTolerance

public double getFuzzyTolerance()
Returns the Fuzzy Tolerance parameter of this tool . This parameter is the minimum distance between coordinates in the output coverage. By default, the minimum fuzzy tolerance value from the input and erase coverages is used. This is an optional parameter.

Returns:
the Fuzzy Tolerance

setFuzzyTolerance

public void setFuzzyTolerance(double fuzzyTolerance)
Sets the Fuzzy Tolerance parameter of this tool . This parameter is the minimum distance between coordinates in the output coverage. By default, the minimum fuzzy tolerance value from the input and erase coverages is used. This is an optional parameter.

Parameters:
fuzzyTolerance - the minimum distance between coordinates in the output coverage. By default, the minimum fuzzy tolerance value from the input and erase coverages is used.

getJoinAttributes

public java.lang.String getJoinAttributes()
Returns the Join attributes parameter of this tool . This parameter is specifies whether all items in both the input coverage feature attribute and identity coverage will be joined to the output coverage feature attribute table. This is an optional parameter.

Returns:
the Join attributes

setJoinAttributes

public void setJoinAttributes(java.lang.String joinAttributes)
Sets the Join attributes parameter of this tool . This parameter is specifies whether all items in both the input coverage feature attribute and identity coverage will be joined to the output coverage feature attribute table. This is an optional parameter.

Parameters:
joinAttributes - specifies whether all items in both the input coverage feature attribute and identity coverage will be joined to the output coverage feature attribute table.

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