com.esri.arcgis.carto
Interface IFieldDomainInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
FieldDomainInfos

public interface IFieldDomainInfos
extends Serializable

Field Domain Information Array.

Product Availability

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


Method Summary
 void add(IFieldDomainInfo pFieldDomainInfo)
          Adds a Field Domain Info.
 int getCount()
          The Field Domain info count.
 IFieldDomainInfo getElement(int index)
          The Field Domain Info at the specified position.
 void insert(int index, IFieldDomainInfo pFieldDomainInfo)
          Adds a Field Domain info info at the specified position.
 void remove(int index)
          Removes the Field Domain Info at the specified position.
 void removeAll()
          Removes all Field Domain infos.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The Field Domain info count.

Product Availability

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

Returns:
The count
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getElement

IFieldDomainInfo getElement(int index)
                            throws IOException,
                                   AutomationException
The Field Domain Info at the specified position.

Product Availability

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

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.carto.IFieldDomainInfo
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(int index)
            throws IOException,
                   AutomationException
Removes the Field Domain Info at the specified position.

Product Availability

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

Parameters:
index - The index (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

void removeAll()
               throws IOException,
                      AutomationException
Removes all Field Domain infos.

Product Availability

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

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

void add(IFieldDomainInfo pFieldDomainInfo)
         throws IOException,
                AutomationException
Adds a Field Domain Info.

Product Availability

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

Parameters:
pFieldDomainInfo - A reference to a com.esri.arcgis.carto.IFieldDomainInfo (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insert

void insert(int index,
            IFieldDomainInfo pFieldDomainInfo)
            throws IOException,
                   AutomationException
Adds a Field Domain info info at the specified position.

Product Availability

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

Parameters:
index - The index (in)
pFieldDomainInfo - A reference to a com.esri.arcgis.carto.IFieldDomainInfo (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.