|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geodatabase.ConfigurationKeyword
public class ConfigurationKeyword
ConfigurationKeyword Object.
Configuration keywords can be of two types:
An enumeration of ConfigurationKeyword objects for an ArcSDE or File geodatabase workspace is returned by the IWorkspaceConfiguration interface.
Constructor Summary | |
---|---|
ConfigurationKeyword(Object obj)
Construct a ConfigurationKeyword 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 |
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. |
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 |
---|
public ConfigurationKeyword(Object obj) throws IOException
obj
to ConfigurationKeyword
. *
ConfigurationKeyword o = (ConfigurationKeyword)obj; // will not work
ConfigurationKeyword o = new ConfigurationKeyword(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException
- if there are interop problems
ConfigurationKeyword theConfigurationKeyword = (ConfigurationKeyword) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public int getKeywordType() throws IOException, AutomationException
getKeywordType
in interface IConfigurationKeyword
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getName() throws IOException, AutomationException
getName
in interface IConfigurationKeyword
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public 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.
getDescription
in interface IConfigurationKeyword
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public 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.
getComments
in interface IConfigurationKeyword
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public 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.
getConfigurationParameters
in interface IConfigurationKeyword
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 |