com.esri.arcgis.geodatabase
Interface IRecordNumberSet

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

public interface IRecordNumberSet
extends java.io.Serializable

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

Description: 'Provides access to members that control the collection of record numbers, and to compare record number collections. Record number sets are used in selections with file based data.' 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 IID33572f5a_46c7_11d4_a124_00c04f6bdf0e
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void add(int recordNumber)
          Adds a record number to the collection.
 void addRange(int minRecord, int maxRecord)
          Adds a range of record numbers to the collection starting with the minRecord and ending with the maxRecord.
 IRecordNumberSet and(IRecordNumberSet otherRecordNumberSet)
          Combines the record numbers that are common to both collections into a single collection.
 void clearAll()
          Clear all record numbers.
 void delete(int recordNumber)
          Removes a record number from the collection.
 IRecordNumberSet difference(IRecordNumberSet otherRecordNumberSet)
          Returns the record numbers that are not in the collection, but are present in the input collection.
 IEnumIDs getIDs()
          Enumerates the record numbers in the record number collection.
 int getMaximumRecordNumber()
          The maximum record in the record number collection.
 int getMinimumRecordNumber()
          The minimum record in the record number collection.
 IRecordNumberSet negate()
          Inverts the collection; selected records become unselected and unselected records become selected.
 IRecordNumberSet or(IRecordNumberSet otherRecordNumberSet)
          Combines all the record numbers that are in one or the other collection into a single collection.
 void setAll()
          Set all record numbers.
 void setBounds(int startRecordNumber, int maxRecordNumber)
          Sets the starting and ending record numbers for the record number collection, then adds all record numbers between those values to the collection.
 IRecordNumberSet xOr(IRecordNumberSet otherRecordNumberSet)
          Combines the record numbers that are in one of the collections, but not both collections, into a single collection.
 

Field Detail

IID33572f5a_46c7_11d4_a124_00c04f6bdf0e

static final int IID33572f5a_46c7_11d4_a124_00c04f6bdf0e
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

setBounds

void setBounds(int startRecordNumber,
               int maxRecordNumber)
               throws java.io.IOException,
                      AutomationException
Sets the starting and ending record numbers for the record number collection, then adds all record numbers between those values to the collection.

Parameters:
startRecordNumber - The startRecordNumber (in)
maxRecordNumber - The maxRecordNumber (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMinimumRecordNumber

int getMinimumRecordNumber()
                           throws java.io.IOException,
                                  AutomationException
The minimum record in the record number collection.

Returns:
The startRecordNumber
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMaximumRecordNumber

int getMaximumRecordNumber()
                           throws java.io.IOException,
                                  AutomationException
The maximum record in the record number collection.

Returns:
The maxRecordNumber
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

void add(int recordNumber)
         throws java.io.IOException,
                AutomationException
Adds a record number to the collection.

Parameters:
recordNumber - The recordNumber (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

delete

void delete(int recordNumber)
            throws java.io.IOException,
                   AutomationException
Removes a record number from the collection.

Parameters:
recordNumber - The recordNumber (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addRange

void addRange(int minRecord,
              int maxRecord)
              throws java.io.IOException,
                     AutomationException
Adds a range of record numbers to the collection starting with the minRecord and ending with the maxRecord.

Parameters:
minRecord - The minRecord (in)
maxRecord - The maxRecord (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setAll

void setAll()
            throws java.io.IOException,
                   AutomationException
Set all record numbers.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

clearAll

void clearAll()
              throws java.io.IOException,
                     AutomationException
Clear all record numbers.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

and

IRecordNumberSet and(IRecordNumberSet otherRecordNumberSet)
                     throws java.io.IOException,
                            AutomationException
Combines the record numbers that are common to both collections into a single collection.

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

or

IRecordNumberSet or(IRecordNumberSet otherRecordNumberSet)
                    throws java.io.IOException,
                           AutomationException
Combines all the record numbers that are in one or the other collection into a single collection.

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

xOr

IRecordNumberSet xOr(IRecordNumberSet otherRecordNumberSet)
                     throws java.io.IOException,
                            AutomationException
Combines the record numbers that are in one of the collections, but not both collections, into a single collection.

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

difference

IRecordNumberSet difference(IRecordNumberSet otherRecordNumberSet)
                            throws java.io.IOException,
                                   AutomationException
Returns the record numbers that are not in the collection, but are present in the input collection.

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

negate

IRecordNumberSet negate()
                        throws java.io.IOException,
                               AutomationException
Inverts the collection; selected records become unselected and unselected records become selected.

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

getIDs

IEnumIDs getIDs()
                throws java.io.IOException,
                       AutomationException
Enumerates the record numbers in the record number collection.

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