|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geodatabase.DifferenceCursor
public class DifferenceCursor
ESRI Difference Cursor object.
Constructor Summary | |
---|---|
DifferenceCursor(Object obj)
Construct a DifferenceCursor using a reference to such an object returned from ArcGIS Engine or Server. |
Method Summary | |
---|---|
boolean |
equals(Object o)
Compare this object with another |
int |
hashCode()
the hashcode for this object |
void |
next(int[] oID,
IRow[] differenceRow)
Returns the object identifier or difference row. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef |
---|
getJintegraDispatch, release |
Constructor Detail |
---|
public DifferenceCursor(Object obj) throws IOException
obj
to DifferenceCursor
. *
DifferenceCursor o = (DifferenceCursor)obj; // will not work
DifferenceCursor o = new DifferenceCursor(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException
- if there are interop problems
DifferenceCursor theDifferenceCursor = (DifferenceCursor) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public void next(int[] oID, IRow[] differenceRow) throws IOException, AutomationException
The Next method returns an object ID of an IRow.
IRow objects returned from a difference cursor are meant to be a read only. If row editing is desired the OID returned from the call to IDifferenceCursor::NextRow should be used in a call ITable::GetRow or ITable::GetRows methods.
next
in interface IDifferenceCursor
oID
- The oID (out: use single element array)differenceRow
- A reference to a com.esri.arcgis.geodatabase.IRow (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |