com.esri.arcgis.system
Interface ISet

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
GroupFeedback, ISetProxy, ObjectList, Set

public interface ISet
extends java.io.Serializable

COM Interface 'ISet'. Generated 3/19/2015 1:20:50 PM from 'C:\ArcGIS\COM\esriSystem.olb'

Description: 'Provides access to members that control a simple set of objects.' 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 IID33848e02_983b_11d1_8463_0000f875b9c6
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void add(java.lang.Object unk)
          Adds an object to the set.
 boolean find(java.lang.Object unk)
          Searches for the object in the set.
 int getCount()
          The element count of the set.
 java.lang.Object next()
          Obtains the next object in the set.
 void remove(java.lang.Object unk)
          Removes the object from the set.
 void removeAll()
          Removes all objects from the set.
 void reset()
          Resets the set for enumerating through the objects with Next.
 

Field Detail

IID33848e02_983b_11d1_8463_0000f875b9c6

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

add

void add(java.lang.Object unk)
         throws java.io.IOException,
                AutomationException
Adds an object to the set.

Parameters:
unk - A reference to another Object (IUnknown) (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(java.lang.Object unk)
            throws java.io.IOException,
                   AutomationException
Removes the object from the set.

Parameters:
unk - A reference to another Object (IUnknown) (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

void removeAll()
               throws java.io.IOException,
                      AutomationException
Removes all objects from the set.

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

find

boolean find(java.lang.Object unk)
             throws java.io.IOException,
                    AutomationException
Searches for the object in the set.

Parameters:
unk - A reference to another Object (IUnknown) (in)
Returns:
The found
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

next

java.lang.Object next()
                      throws java.io.IOException,
                             AutomationException
Obtains the next object in the set.

Returns:
A reference to another Object (IUnknown)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

reset

void reset()
           throws java.io.IOException,
                  AutomationException
Resets the set for enumerating through the objects with Next.

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

getCount

int getCount()
             throws java.io.IOException,
                    AutomationException
The element count of the set.

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