public interface ISet
extends java.io.Serializable
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 =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IID33848e02_983b_11d1_8463_0000f875b9c6 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
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.
|
static final int IID33848e02_983b_11d1_8463_0000f875b9c6
static final int xxDummy
static final java.lang.String IID
void add(java.lang.Object unk) throws java.io.IOException, AutomationException
unk
- A reference to another Object (IUnknown) (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void remove(java.lang.Object unk) throws java.io.IOException, AutomationException
unk
- A reference to another Object (IUnknown) (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void removeAll() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.boolean find(java.lang.Object unk) throws java.io.IOException, AutomationException
unk
- A reference to another Object (IUnknown) (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.java.lang.Object next() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void reset() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.int getCount() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.