com.esri.arcgis.geodatabase
Interface IConfigurationParameter

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
IConfigurationParameter2
All Known Implementing Classes:
ConfigurationParameter, IConfigurationParameter2Proxy, IConfigurationParameterProxy

public interface IConfigurationParameter
extends java.io.Serializable

Provides access to members to supply information about configuration paramters.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Description

This interface is used for retrieving the properties of a configuration parameter. If the intention is to set the properties of a configuration parameter then IConfigurationParameter2 should be used.

When To Use

Use IConfigurationParameters to access the database storage parameters referenced by a configuration keyword.

Remarks

Configuration keywords in an ArcSDE of File geodatabase are used to specify storage parameters for feature classes, tables and geometric networks. These storage parameters can be accessed through this interface.

See Also:
IConfigurationKeyword

Method Summary
 java.lang.String getConfigurationString()
          The configuration string defined by the parameter.
 java.lang.String getName()
          The name of the parameter.
 

Method Detail

getName

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The name
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
IConfigurationKeyword

getConfigurationString

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The str
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
IConfigurationKeyword