com.esri.arcgis.geodatabase
Interface IFIDSetOperator

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
FIDSet, IFIDSetOperatorProxy, RecordNumberSet

public interface IFIDSetOperator
extends java.io.Serializable

COM Interface 'IFIDSetOperator'. Generated 3/19/2015 1:20:56 PM from 'C:\ArcGIS\COM\esriGeoDatabase.olb'

Description: 'Provides access to members that control the collection of feature ids, and to combine feature id collections.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDed3c0c61_0c11_49e1_9d71_f3d2caff085f
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 IFIDSet difference(IFIDSet otherFIDSet)
          Returns the feature IDs that are not in the collection, but are present in the input collection.
 IFIDSet intersect(IFIDSet otherFIDSet)
          Combines the feature IDs that are common to both collections into a single collection.
 IFIDSet symmetricDifference(IFIDSet otherFIDSet)
          Combines the feature IDs that are in one of the collections, but not both collections, into a single collection.
 IFIDSet union(IFIDSet otherFIDSet)
          Combines all the feature IDs that are in one or the other collection into a single collection.
 

Field Detail

IIDed3c0c61_0c11_49e1_9d71_f3d2caff085f

static final int IIDed3c0c61_0c11_49e1_9d71_f3d2caff085f
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

union

IFIDSet union(IFIDSet otherFIDSet)
              throws java.io.IOException,
                     AutomationException
Combines all the feature IDs that are in one or the other collection into a single collection.

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

intersect

IFIDSet intersect(IFIDSet otherFIDSet)
                  throws java.io.IOException,
                         AutomationException
Combines the feature IDs that are common to both collections into a single collection.

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

difference

IFIDSet difference(IFIDSet otherFIDSet)
                   throws java.io.IOException,
                          AutomationException
Returns the feature IDs that are not in the collection, but are present in the input collection.

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

symmetricDifference

IFIDSet symmetricDifference(IFIDSet otherFIDSet)
                            throws java.io.IOException,
                                   AutomationException
Combines the feature IDs that are in one of the collections, but not both collections, into a single collection.

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