|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.esri.arcgis.geodatabase.RowBuffer
RowBuffer Object.
A RowBuffer is a transient object that is capable of holding the state of a row, but has no object identity. It is used primarily during data loading as the argument to the InsertRow method on an insert cursor. A RowBuffer is obtained from a Table using the CreateRowBuffer method.
IRowBuffer,
IRow,
ITable,
Serialized Form| Constructor Summary | |
RowBuffer(java.lang.Object obj)
Construct a RowBuffer using a reference to such an object returned from ArcGIS Engine or Server. |
|
| Method Summary | |
boolean |
equals(java.lang.Object o)
Compare this object with another |
IRowBuffer |
getAsIRowBuffer()
Deprecated. No replacement. The object reference can be directly used where the implemented interface is needed. |
IFields |
getFields()
The fields Collection for this row buffer. |
java.lang.Object |
getValue(int index)
The value of the field with the specified index. |
int |
hashCode()
the hashcode for this object |
void |
setValue(int index,
java.lang.Object value)
The value of the field with the specified index. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public RowBuffer(java.lang.Object obj)
throws java.io.IOException
obj to RowBuffer. *
RowBuffer o = (RowBuffer)obj; // will not work
RowBuffer o = new RowBuffer(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
RowBuffer theRowBuffer = (RowBuffer) obj;
java.io.IOException - if there are interop problems| Method Detail |
public IRowBuffer getAsIRowBuffer()
public boolean equals(java.lang.Object o)
public int hashCode()
public java.lang.Object getValue(int index)
throws java.io.IOException,
AutomationException
IRowBufferThe Index parameter is a zero based index.
getValue in interface IRowBufferindex - The index (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void setValue(int index,
java.lang.Object value)
throws java.io.IOException,
AutomationException
IRowBuffer
setValue in interface IRowBufferindex - The index (in)value - A Variant (in)
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public IFields getFields()
throws java.io.IOException,
AutomationException
IRowBuffer
getFields in interface IRowBufferjava.io.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 | |||||||||