public interface ILongLongArray
extends java.io.Serializable
Description: 'Provides access to members that control 64-bit 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 =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IID0ac34dfd_1b24_4ec5_9b38_0e09444b33c4 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
add(long element)
Adds an element to the array.
|
int |
getCount()
The number of elements in the array.
|
long |
getElement(int index)
An element in the array.
|
void |
insert(int index,
long 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,
long pElement)
An element in the array.
|
static final int IID0ac34dfd_1b24_4ec5_9b38_0e09444b33c4
static final int xxDummy
static final java.lang.String IID
int getCount() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void remove(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.void removeAll() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.long getElement(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.void setElement(int index, long pElement) throws java.io.IOException, AutomationException
index
- The index (in)pElement
- Signed 64-bit int (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void add(long element) throws java.io.IOException, AutomationException
element
- Signed 64-bit int (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void insert(int index, long element) throws java.io.IOException, AutomationException
index
- The index (in)element
- Signed 64-bit int (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.