public interface IObjects
extends java.io.Serializable
Description: 'Provides access to members that manipulate a collection 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 |
IIDabab1c4b_49a8_11d1_9aa6_080009ec734b |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
int |
count(IUID classFilter)
The number of objects in the array that belong to a specific class.
|
java.lang.Object |
get(int index)
Retrieves an object from the array by index.
|
void |
insert(int index,
java.lang.Object object,
IUID cLSID)
Insert object into the array at the given index.
|
void |
remove(int index,
int count)
Removes 'count' number of objects from the array starting at the given index.
|
java.lang.Object |
set(int index,
java.lang.Object object,
IUID cLSID)
Add an object at the given index replacing the existing object, which is returned.
|
static final int IIDabab1c4b_49a8_11d1_9aa6_080009ec734b
static final int xxDummy
static final java.lang.String IID
int count(IUID classFilter) throws java.io.IOException, AutomationException
classFilter
- A reference to a com.esri.arcgis.system.IUID (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void insert(int index, java.lang.Object object, IUID cLSID) throws java.io.IOException, AutomationException
index
- The index (in)object
- A reference to another Object (IUnknown) (in)cLSID
- A reference to a com.esri.arcgis.system.IUID (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void remove(int index, int count) throws java.io.IOException, AutomationException
index
- The index (in)count
- The count (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.java.lang.Object get(int index) throws java.io.IOException, AutomationException
index
- The index (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.java.lang.Object set(int index, java.lang.Object object, IUID cLSID) throws java.io.IOException, AutomationException
index
- The index (in)object
- A reference to another Object (IUnknown) (in)cLSID
- A reference to a com.esri.arcgis.system.IUID (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.