public interface ICursor
extends java.io.Serializable
Description: 'Provides access to members that hand out enumerated rows, field collections and allows for the updating, deleting and inserting of rows.' 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 |
IIDd4803ee7_79f4_11d0_97fc_0080c7f79481 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
deleteRow()
Delete the existing Row in the database corresponding to the current position of the cursor.
|
int |
findField(java.lang.String name)
The index of the field with the specified name.
|
void |
flush()
Flush any outstanding buffered writes to the database.
|
IFields |
getFields()
The Fields Collection for this cursor.
|
java.lang.Object |
insertRow(IRowBuffer buffer)
Insert a new Row into the database using the property values in the input buffer.
|
IRow |
nextRow()
Advance the position of the cursor by one and return the Row object at that position.
|
void |
updateRow(IRow row)
Update the existing Row in the database corresponding to the current position of the cursor.
|
static final int IIDd4803ee7_79f4_11d0_97fc_0080c7f79481
static final int xxDummy
static final java.lang.String IID
int findField(java.lang.String name) throws java.io.IOException, AutomationException
name
- The name (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.IFields getFields() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.IRow nextRow() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void updateRow(IRow row) throws java.io.IOException, AutomationException
row
- A reference to a com.esri.arcgis.geodatabase.IRow (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void deleteRow() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.java.lang.Object insertRow(IRowBuffer buffer) throws java.io.IOException, AutomationException
buffer
- A reference to a com.esri.arcgis.geodatabase.IRowBuffer (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void flush() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.