|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IConfigurationKeyword
Provides access to members to supply information about configuration keywords.
This interface is used for retrieving the properties of a configuration keyword.
Configuration keywords are used in an ArcSDE or File geodatabase to specify storage parameters for new tables, feature classes and other datasets such as geometric networks, topologies and terrains when they are created. Configuration keywords can be of several different types:
The following are examples of some of the methods that accept configuration keywords. These methods do not require an IConfigurationKeyword parameter, but can accept a configuration keyword as a string:
IFeatureWorkspace.CreateFeatureClass
IFeatureWorkspace.CreateTable
IFeatureDataset.CreateFeatureClass
IClassSchemaEdit.RergisterAsObjectClass
IFeatureDataConverter.ConvertFeatureClass
Use the IConfigurationKeyword interface to get information about a configuration keyword. For example, through this interface, you can retrieve a name, description and the set of configuration parameters that this keyword represents.
Method Summary | |
---|---|
String |
getComments()
Any additional comments about the keyword. |
IEnumConfigurationParameter |
getConfigurationParameters()
Configuration parameters included in this keyword. |
String |
getDescription()
The description of the keyword. |
int |
getKeywordType()
The type of the keyword. |
String |
getName()
The name of the keyword. |
Method Detail |
---|
int getKeywordType() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getName() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getDescription() throws IOException, AutomationException
Configuration keywords in an ArcSDE or File geodatabase can have descriptions associated with them. A keyword's description is a user-friendly string that describes the configuration keyword.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getComments() throws IOException, AutomationException
Configuration keywords in an ArcSDE or File geodatabase can have descriptions associated with them. A keyword's description is text that describes what the configuration keyword is used for.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IEnumConfigurationParameter getConfigurationParameters() throws IOException, AutomationException
Configuration keywords in an ArcSDE or File geodatabase are used to specify storage parameters for feature class, tables and geometric networks. These storage parameters can be accessed through the IConfigurationParameters interface. This method returns a collection of parameters for a configuration keyword.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |