com.esri.arcgis.datasourcesfile
Interface IArcInfoTable

All Superinterfaces:
Serializable
All Known Implementing Classes:
IArcInfoTableProxy

public interface IArcInfoTable
extends Serializable

Provides access to members that modify ArcInfo Tables.

Product Availability

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


Method Summary
 void addIndex(String itemName)
          Adds an Index for the specified Item.
 void addItem(IArcInfoItem item, String startItem)
          Adds an Item to this Table.
 void alterItem(String itemName, IArcInfoItem item)
          Changes the properties of the specified Item.
 void deleteIndex(String itemName)
          Deletes an Index from the specified Item.
 void deleteItem(String itemName)
          Deletes an Item from this Table.
 int findItem(String name)
          Index of the Item with the specified name.
 IArcInfoItems getItemSet()
          Item Collection for this Feature Class or Info Table.
 

Method Detail

findItem

int findItem(String name)
             throws IOException,
                    AutomationException
Index of the Item with the specified name.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

getItemSet

IArcInfoItems getItemSet()
                         throws IOException,
                                AutomationException
Item Collection for this Feature Class or Info Table.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
A reference to a com.esri.arcgis.datasourcesfile.IArcInfoItems
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addItem

void addItem(IArcInfoItem item,
             String startItem)
             throws IOException,
                    AutomationException
Adds an Item to this Table.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
item - A reference to a com.esri.arcgis.datasourcesfile.IArcInfoItem (in)
startItem - The startItem (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

deleteItem

void deleteItem(String itemName)
                throws IOException,
                       AutomationException
Deletes an Item from this Table.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

addIndex

void addIndex(String itemName)
              throws IOException,
                     AutomationException
Adds an Index for the specified Item.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

deleteIndex

void deleteIndex(String itemName)
                 throws IOException,
                        AutomationException
Deletes an Index from the specified Item.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

alterItem

void alterItem(String itemName,
               IArcInfoItem item)
               throws IOException,
                      AutomationException
Changes the properties of the specified Item.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
itemName - The itemName (in)
item - A reference to a com.esri.arcgis.datasourcesfile.IArcInfoItem (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.