com.esri.arcgis.system
Interface ILongArray

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
ILongArrayProxy, LongArray

public interface ILongArray
extends java.io.Serializable

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

Description: 'Provides access to members that control long arrays.' 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 IID54f9ffb6_e91f_11d2_9f81_00c04f8ece27
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void add(int element)
          Adds an element to the array.
 int getCount()
          The number of elements in the array.
 int getElement(int index)
          An element in the array.
 void insert(int index, int element)
          Inserts an element to the array.
 void remove(int index)
          Removes an element from the array.
 void removeAll()
          Removes all elements from the array.
 void setElement(int index, int pElement)
          An element in the array.
 

Field Detail

IID54f9ffb6_e91f_11d2_9f81_00c04f8ece27

static final int IID54f9ffb6_e91f_11d2_9f81_00c04f8ece27
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 number of elements in the array.

Returns:
The pCount
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 element 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 elements from the array.

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

getElement

int getElement(int index)
               throws java.io.IOException,
                      AutomationException
An element in the array.

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

setElement

void setElement(int index,
                int pElement)
                throws java.io.IOException,
                       AutomationException
An element in the array.

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

add

void add(int element)
         throws java.io.IOException,
                AutomationException
Adds an element to the array.

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

insert

void insert(int index,
            int element)
            throws java.io.IOException,
                   AutomationException
Inserts an element to the array.

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