com.esri.arcgis.geodatabase
Interface IFilterDefs

All Superinterfaces:
Serializable
All Known Implementing Classes:
FilterDefs

public interface IFilterDefs
extends Serializable

Provides access to methods that control an array of filter definition objects.

Product Availability

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


Method Summary
 void add(IFilterDef filterDef)
          Adds a filter definition object.
 int getCount()
          The filter definition count.
 IFilterDef getElement(int index)
          The filter definition at the specified position.
 void insert(int index, IFilterDef filterDef)
          Adds a filter definition property at the specified position.
 void remove(int index)
          Removes the filter definition at the specified position.
 void removeAll()
          Removes all filter definition objects.
 

Method Detail

getCount

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

IFilterDef getElement(int index)
                      throws IOException,
                             AutomationException
The filter definition 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.IFilterDef
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 filter definition 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 filter definition objects.

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(IFilterDef filterDef)
         throws IOException,
                AutomationException
Adds a filter definition object.

Product Availability

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

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

insert

void insert(int index,
            IFilterDef filterDef)
            throws IOException,
                   AutomationException
Adds a filter definition property at the specified position.

Product Availability

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

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