com.esri.arcgis.carto
Interface IClassBreakInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
ClassBreakInfos

public interface IClassBreakInfos
extends Serializable

Provides access to the ClassBreakInfos Interface.

Product Availability

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


Method Summary
 void add(IClassBreakInfo pClassBreakInfo)
          Adds a class break info.
 int getCount()
          The number of class breaks.
 IClassBreakInfo getElement(int index)
          The class break info at the specified position.
 void insert(int index, IClassBreakInfo pClassBreakInfo)
          Adds a class break info at the specified position.
 void remove(int index)
          Removes the class break info at the specified position.
 void removeAll()
          Removes all class break infos.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The number of class breaks.

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

IClassBreakInfo getElement(int index)
                           throws IOException,
                                  AutomationException
The class break 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.IClassBreakInfo
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 class break 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 class break 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(IClassBreakInfo pClassBreakInfo)
         throws IOException,
                AutomationException
Adds a class break info.

Product Availability

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

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

insert

void insert(int index,
            IClassBreakInfo pClassBreakInfo)
            throws IOException,
                   AutomationException
Adds a class break info at the specified position.

Product Availability

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

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