com.esri.arcgis.system
Interface IArray

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
Array, EnumGPEnvironment, EnumGPName, IArrayProxy, TxMaps

public interface IArray
extends java.io.Serializable

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

Description: 'Provides access to members that control a simple array 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 IIDaafb54d9_aaf8_11d2_87f3_0000f8751720
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void add(java.lang.Object unk)
          Adds an object to the array.
 int getCount()
          The element count of the array.
 java.lang.Object getElement(int index)
          Searches for the object in the array.
 void insert(int index, java.lang.Object unk)
          Adds an object to the array at the specified index.
 void remove(int index)
          Removes an object from the array.
 void removeAll()
          Removes all objects from the array.
 

Field Detail

IIDaafb54d9_aaf8_11d2_87f3_0000f8751720

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

getCount

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

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

getElement

java.lang.Object getElement(int index)
                            throws java.io.IOException,
                                   AutomationException
Searches for the object in the array.

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

add

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

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.

insert

void insert(int index,
            java.lang.Object unk)
            throws java.io.IOException,
                   AutomationException
Adds an object to the array at the specified index.

Parameters:
index - The index (in)
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(int index)
            throws java.io.IOException,
                   AutomationException
Removes an object from the array.

Parameters:
index - The index (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 array.

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