com.esri.arcgis.geodatabase
Class ConfigurationParameter

java.lang.Object
  extended by com.esri.arcgis.geodatabase.ConfigurationParameter
All Implemented Interfaces:
IConfigurationParameter, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class ConfigurationParameter
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, IConfigurationParameter

ConfigurationParameter Object.

Remarks

Configuration keywords in an ArcSDE or File geodatabase are used to specify storage parameters for feature classes, tables and geometric networks. These storage parameters are represented by ConfigurationParameter objects.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

See Also:
Serialized Form

Constructor Summary
ConfigurationParameter(Object obj)
          Construct a ConfigurationParameter using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 String getConfigurationString()
          The configuration string defined by the parameter.
 String getName()
          The name of the parameter.
 int hashCode()
          the hashcode for this object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

ConfigurationParameter

public ConfigurationParameter(Object obj)
                       throws IOException
Construct a ConfigurationParameter using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to ConfigurationParameter.
Casting to this class from the return value of a method will not work, as this class represents an abstract class in ArcObjects.
*
ConfigurationParameter o = (ConfigurationParameter)obj; // will not work

ConfigurationParameter o = new ConfigurationParameter(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server

Throws:
IOException - if there are interop problems ConfigurationParameter theConfigurationParameter = (ConfigurationParameter) obj;
Method Detail

equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getName

public String getName()
               throws IOException,
                      AutomationException
The name of the parameter.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
getName in interface IConfigurationParameter
Returns:
The name
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getConfigurationString

public String getConfigurationString()
                              throws IOException,
                                     AutomationException
The configuration string defined by the parameter.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
getConfigurationString in interface IConfigurationParameter
Returns:
The str
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.