/**
* Delete the row on which the given rowState is currently positioned.
+ * <p>
+ * Note, this method is not generally meant to be used directly. You should
+ * use the {@link #deleteCurrentRow} method or use the Cursor class, which
+ * allows for more complex table interactions.
*/
public void deleteRow(RowState rowState, RowId rowId) throws IOException {
requireValidRowId(rowId);
/**
* Reads a single column from the given row.
+ * <p>
+ * Note, this method is not generally meant to be used directly. Instead
+ * use the Cursor class, which allows for more complex table interactions,
+ * e.g. {@link Cursor#getCurrentRowValue}.
*/
public Object getRowValue(RowState rowState, RowId rowId, Column column)
throws IOException