com.esri.arcgis.schematic
Interface ISchematicRecordset

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
ISchematicRecordsetProxy

public interface ISchematicRecordset
extends java.io.Serializable

COM Interface 'ISchematicRecordset'. Generated 3/19/2015 1:21:00 PM from 'C:\ArcGIS\COM\esriSchematic.olb'

Description: 'Provides access to members that manage the schematic recordset.' 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 IID48b5397d_2a89_4c58_b63d_0376f938f7f0
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void close()
          Closes the schematic recordset.
 void findRecord(java.lang.String identifier)
          Finds a record by its identifiers fields values inside the schematic recordset.
 java.lang.String getRecordIdentifier()
          Current record identifiers fields values.
 java.lang.Object getRecordValue(java.lang.String fieldName)
          Field value of the current record.
 ISchematicDataSource getSchematicDataSource()
          Schematic data source of the schematic recordset.
 boolean isBOF()
          Indicates whether or not the 'BOF' flag of the schematic recordset is on.
 boolean isEOF()
          Indicates whether or not the 'EOF' flag of the schematic recordset is on.
 void moveFirst()
          Moves to the first record of the schematic recordset.
 void moveNext()
          Moves to the next record of the schematic recordset.
 void open()
          Opens the schematic recordset.
 void refresh()
          Refreshes the schematic recordset.
 

Field Detail

IID48b5397d_2a89_4c58_b63d_0376f938f7f0

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

getSchematicDataSource

ISchematicDataSource getSchematicDataSource()
                                            throws java.io.IOException,
                                                   AutomationException
Schematic data source of the schematic recordset.

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

open

void open()
          throws java.io.IOException,
                 AutomationException
Opens the schematic recordset.

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

close

void close()
           throws java.io.IOException,
                  AutomationException
Closes the schematic recordset.

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

refresh

void refresh()
             throws java.io.IOException,
                    AutomationException
Refreshes the schematic recordset.

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

moveFirst

void moveFirst()
               throws java.io.IOException,
                      AutomationException
Moves to the first record of the schematic recordset.

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

moveNext

void moveNext()
              throws java.io.IOException,
                     AutomationException
Moves to the next record of the schematic recordset.

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

findRecord

void findRecord(java.lang.String identifier)
                throws java.io.IOException,
                       AutomationException
Finds a record by its identifiers fields values inside the schematic recordset.

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

getRecordIdentifier

java.lang.String getRecordIdentifier()
                                     throws java.io.IOException,
                                            AutomationException
Current record identifiers fields values.

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

getRecordValue

java.lang.Object getRecordValue(java.lang.String fieldName)
                                throws java.io.IOException,
                                       AutomationException
Field value of the current record.

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

isBOF

boolean isBOF()
              throws java.io.IOException,
                     AutomationException
Indicates whether or not the 'BOF' flag of the schematic recordset is on.

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

isEOF

boolean isEOF()
              throws java.io.IOException,
                     AutomationException
Indicates whether or not the 'EOF' flag of the schematic recordset is on.

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