com.esri.arcgis.geodatabase
Interface IItemInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
ItemInfos

public interface IItemInfos
extends Serializable

Provides access to the ItemInfos Interface.

Product Availability

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


Method Summary
 void add(IItemInfo ii)
          Adds an ItemInfo to the array.
 int getCount()
          The ItemInfo count.
 IItemInfo getElement(int index)
          The ItemInfo at the specified position.
 void insert(int index, IItemInfo ii)
          Adds a ItemInfo at the specified position.
 void remove(int index)
          Removes the ItemInfo at the specified position.
 void removeAll()
          Removes all ItemInfos.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The ItemInfo 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

IItemInfo getElement(int index)
                     throws IOException,
                            AutomationException
The ItemInfo 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.geodatabase.IItemInfo
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 ItemInfo 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 ItemInfos.

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(IItemInfo ii)
         throws IOException,
                AutomationException
Adds an ItemInfo to the array.

Product Availability

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

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

insert

void insert(int index,
            IItemInfo ii)
            throws IOException,
                   AutomationException
Adds a ItemInfo at the specified position.

Product Availability

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

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