com.esri.arcgis.carto
Interface IStatisticDescriptions

All Superinterfaces:
Serializable
All Known Implementing Classes:
StatisticDescriptions

public interface IStatisticDescriptions
extends Serializable

StatisticDescription Array

Product Availability

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


Method Summary
 void add(IStatisticDescription pStatisticDescription)
          Adds a StatisticDescription.
 int getCount()
          The StatisticDescription count.
 IStatisticDescription getElement(int index)
          The StatisticDescription at the specified position.
 void insert(int index, IStatisticDescription pStatisticDescription)
          Inserts a StatisticDescription at the specified position.
 void remove(int index)
          Removes the StatisticDescription at the specified position.
 void removeAll()
          Removes all StatisticDescriptions.
 

Method Detail

getCount

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

IStatisticDescription getElement(int index)
                                 throws IOException,
                                        AutomationException
The StatisticDescription 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.IStatisticDescription
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 StatisticDescription 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 StatisticDescriptions.

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(IStatisticDescription pStatisticDescription)
         throws IOException,
                AutomationException
Adds a StatisticDescription.

Product Availability

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

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

insert

void insert(int index,
            IStatisticDescription pStatisticDescription)
            throws IOException,
                   AutomationException
Inserts a StatisticDescription at the specified position.

Product Availability

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

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