com.esri.arcgis.geodatabase
Interface IFeatureCursor

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
ITemporalCursor
All Known Implementing Classes:
FeatureCursor, IFeatureCursorProxy, ITemporalCursorProxy, RelQueryCursor, TemporalCursor

public interface IFeatureCursor
extends java.io.Serializable

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

Description: 'Provides access to members that hand out enumerated features, field collections and allows for the updating, deleting and inserting of features.' 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 IIDd4803ef8_79f4_11d0_97fc_0080c7f79481
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void deleteFeature()
          Delete the existing Feature 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 insertFeature(IFeatureBuffer buffer)
          Insert a new Feature into the database using the property values in the input buffer.
 IFeature nextFeature()
          Advance the position of the cursor by one and return the Feature object at that position.
 void updateFeature(IFeature object)
          Update the existing Feature in the database corresponding to the current position of the cursor.
 

Field Detail

IIDd4803ef8_79f4_11d0_97fc_0080c7f79481

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

findField

int findField(java.lang.String name)
              throws java.io.IOException,
                     AutomationException
The index of the field with the specified name.

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

getFields

IFields getFields()
                  throws java.io.IOException,
                         AutomationException
The fields Collection for this cursor.

Returns:
A reference to a com.esri.arcgis.geodatabase.IFields
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

nextFeature

IFeature nextFeature()
                     throws java.io.IOException,
                            AutomationException
Advance the position of the cursor by one and return the Feature object at that position.

Returns:
A reference to a com.esri.arcgis.geodatabase.IFeature
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

updateFeature

void updateFeature(IFeature object)
                   throws java.io.IOException,
                          AutomationException
Update the existing Feature in the database corresponding to the current position of the cursor.

Parameters:
object - A reference to a com.esri.arcgis.geodatabase.IFeature (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

deleteFeature

void deleteFeature()
                   throws java.io.IOException,
                          AutomationException
Delete the existing Feature in the database corresponding to the current position of the cursor.

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

insertFeature

java.lang.Object insertFeature(IFeatureBuffer buffer)
                               throws java.io.IOException,
                                      AutomationException
Insert a new Feature into the database using the property values in the input buffer. The ID of the new Feature is returned.

Parameters:
buffer - A reference to a com.esri.arcgis.geodatabase.IFeatureBuffer (in)
Returns:
A Variant
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

flush

void flush()
           throws java.io.IOException,
                  AutomationException
Flush any outstanding buffered writes to the database.

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