public abstract class CursorImpl extends Object implements Cursor
The Cursor provides a variety of static utility methods to construct
cursors with given characteristics or easily search for specific values.
For even friendlier and more flexible construction, see
CursorBuilder.
Is not thread-safe.
Cursor.Id, Cursor.Position, Cursor.Savepoint| Modifier and Type | Field and Description |
|---|---|
static boolean |
MOVE_FORWARD
boolean value indicating forward movement
|
static boolean |
MOVE_REVERSE
boolean value indicating reverse movement
|
| Modifier and Type | Method and Description |
|---|---|
void |
afterLast()
Resets this cursor for reverse traversal (sets cursor to after the last
row).
|
void |
beforeFirst()
Resets this cursor for forward traversal (sets cursor to before the first
row).
|
static CursorImpl |
createCursor(TableImpl table)
Creates a normal, un-indexed cursor for the given table.
|
boolean |
currentRowMatches(ColumnImpl columnPattern,
Object valuePattern) |
boolean |
currentRowMatches(Column columnPattern,
Object valuePattern)
Returns
true if the current row matches the given pattern. |
boolean |
currentRowMatches(Map<String,?> rowPattern)
Returns
true if the current row matches the given pattern. |
void |
deleteCurrentRow()
Delete the current row.
|
boolean |
findFirstRow(ColumnImpl columnPattern,
Object valuePattern) |
boolean |
findFirstRow(Column columnPattern,
Object valuePattern)
Moves to the first row (as defined by the cursor) where the given column
has the given value.
|
boolean |
findFirstRow(Map<String,?> rowPattern)
Moves to the first row (as defined by the cursor) where the given columns
have the given values.
|
boolean |
findNextRow(ColumnImpl columnPattern,
Object valuePattern) |
boolean |
findNextRow(Column columnPattern,
Object valuePattern)
Moves to the next row (as defined by the cursor) where the given column
has the given value.
|
boolean |
findNextRow(Map<String,?> rowPattern)
Moves to the next row (as defined by the cursor) where the given columns
have the given values.
|
boolean |
findRow(RowId rowId)
Moves to the row with the given rowId.
|
ColumnMatcher |
getColumnMatcher()
Returns the currently configured ColumnMatcher, always non-
null. |
Row |
getCurrentRow()
Returns the current row in this cursor (Column name -> Column value).
|
Row |
getCurrentRow(Collection<String> columnNames)
Returns the current row in this cursor (Column name -> Column value).
|
Object |
getCurrentRowValue(Column column)
Returns the given column from the current row.
|
Object |
getCurrentRowValue(ColumnImpl column) |
ErrorHandler |
getErrorHandler()
Gets the currently configured ErrorHandler (always non-
null). |
JetFormat |
getFormat() |
com.healthmarketscience.jackcess.impl.CursorImpl.IdImpl |
getId() |
Row |
getNextRow()
Moves to the next row in the table and returns it.
|
Row |
getNextRow(Collection<String> columnNames)
Moves to the next row in the table and returns it.
|
PageChannel |
getPageChannel() |
Row |
getPreviousRow()
Moves to the previous row in the table and returns it.
|
Row |
getPreviousRow(Collection<String> columnNames)
Moves to the previous row in the table and returns it.
|
TableImpl.RowState |
getRowState() |
com.healthmarketscience.jackcess.impl.CursorImpl.SavepointImpl |
getSavepoint()
Returns the current state of the cursor which can be restored at a future
point in time by a call to
Cursor.restoreSavepoint(com.healthmarketscience.jackcess.Cursor.Savepoint). |
TableImpl |
getTable() |
boolean |
isAfterLast()
Returns
true if the cursor is currently positioned after the
last row, false otherwise. |
boolean |
isBeforeFirst()
Returns
true if the cursor is currently positioned before the
first row, false otherwise. |
boolean |
isCurrentRowDeleted()
Returns
true if the row at which the cursor is currently
positioned is deleted, false otherwise (including invalid rows). |
Iterator<Row> |
iterator()
Calls
Cursor.beforeFirst() on this cursor and returns a modifiable
Iterator which will iterate through all the rows of this table. |
Iterator<Row> |
iterator(IterableBuilder iterBuilder) |
int |
moveNextRows(int numRows)
Moves forward as many rows as possible up to the given number of rows.
|
int |
movePreviousRows(int numRows)
Moves backward as many rows as possible up to the given number of rows.
|
boolean |
moveToNextRow()
Moves to the next row as defined by this cursor.
|
boolean |
moveToPreviousRow()
Moves to the previous row as defined by this cursor.
|
IterableBuilder |
newIterable()
Convenience method for constructing a new IterableBuilder for this
cursor.
|
void |
reset()
Resets this cursor for forward traversal.
|
void |
restoreSavepoint(Cursor.Savepoint savepoint)
Moves the cursor to a savepoint previously returned from
Cursor.getSavepoint(). |
void |
restoreSavepoint(com.healthmarketscience.jackcess.impl.CursorImpl.SavepointImpl savepoint) |
void |
setColumnMatcher(ColumnMatcher columnMatcher)
Sets a new ColumnMatcher.
|
void |
setCurrentRowValue(ColumnImpl column,
Object value) |
void |
setCurrentRowValue(Column column,
Object value)
Updates a single value in the current row.
|
void |
setErrorHandler(ErrorHandler newErrorHandler)
Sets a new ErrorHandler.
|
String |
toString() |
Object[] |
updateCurrentRow(Object... row)
Update the current row.
|
<M extends Map<String,Object>> |
updateCurrentRowFromMap(M row)
Update the current row.
|
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitforEach, spliteratorpublic static final boolean MOVE_FORWARD
public static final boolean MOVE_REVERSE
public static CursorImpl createCursor(TableImpl table)
table - the table over which this cursor will traversepublic TableImpl.RowState getRowState()
public com.healthmarketscience.jackcess.impl.CursorImpl.IdImpl getId()
public JetFormat getFormat()
public PageChannel getPageChannel()
public ErrorHandler getErrorHandler()
Cursornull).
This will be used to handle all errors.getErrorHandler in interface Cursorpublic void setErrorHandler(ErrorHandler newErrorHandler)
Cursornull, resets to using the
ErrorHandler configured at the Table level.setErrorHandler in interface Cursorpublic ColumnMatcher getColumnMatcher()
Cursornull.getColumnMatcher in interface Cursorpublic void setColumnMatcher(ColumnMatcher columnMatcher)
Cursornull, resets to using the default
matcher (default depends on Cursor type).setColumnMatcher in interface Cursorpublic com.healthmarketscience.jackcess.impl.CursorImpl.SavepointImpl getSavepoint()
CursorCursor.restoreSavepoint(com.healthmarketscience.jackcess.Cursor.Savepoint).
Savepoints may be used across different cursor instances for the same
table, but they must have the same Cursor.Id.
getSavepoint in interface Cursorpublic void restoreSavepoint(Cursor.Savepoint savepoint) throws IOException
CursorCursor.getSavepoint().restoreSavepoint in interface CursorIOExceptionpublic void restoreSavepoint(com.healthmarketscience.jackcess.impl.CursorImpl.SavepointImpl savepoint)
throws IOException
IOExceptionpublic void reset()
CursorCursor.beforeFirst().public void beforeFirst()
CursorbeforeFirst in interface Cursorpublic void afterLast()
Cursorpublic boolean isBeforeFirst()
throws IOException
Cursortrue if the cursor is currently positioned before the
first row, false otherwise.isBeforeFirst in interface CursorIOExceptionpublic boolean isAfterLast()
throws IOException
Cursortrue if the cursor is currently positioned after the
last row, false otherwise.isAfterLast in interface CursorIOExceptionpublic boolean isCurrentRowDeleted()
throws IOException
Cursortrue if the row at which the cursor is currently
positioned is deleted, false otherwise (including invalid rows).isCurrentRowDeleted in interface CursorIOExceptionpublic Iterator<Row> iterator()
CursorCursor.beforeFirst() on this cursor and returns a modifiable
Iterator which will iterate through all the rows of this table. Use of
the Iterator follows the same restrictions as a call to
Cursor.getNextRow().
For more flexible iteration see Cursor.newIterable().
public IterableBuilder newIterable()
CursornewIterable in interface Cursorpublic Iterator<Row> iterator(IterableBuilder iterBuilder)
public void deleteCurrentRow()
throws IOException
CursorNote, re-deleting an already deleted row is allowed (it does nothing).
deleteCurrentRow in interface CursorIOExceptionpublic Object[] updateCurrentRow(Object... row) throws IOException
CursorupdateCurrentRow in interface CursorIOExceptionpublic <M extends Map<String,Object>> M updateCurrentRowFromMap(M row) throws IOException
CursorupdateCurrentRowFromMap in interface CursorIOExceptionpublic Row getNextRow() throws IOException
CursorgetNextRow in interface Cursornull if no next row is foundIOExceptionpublic Row getNextRow(Collection<String> columnNames) throws IOException
CursorgetNextRow in interface CursorcolumnNames - Only column names in this collection will be returnednull if no next row is foundIOExceptionpublic Row getPreviousRow() throws IOException
CursorgetPreviousRow in interface Cursornull if no previous row is foundIOExceptionpublic Row getPreviousRow(Collection<String> columnNames) throws IOException
CursorgetPreviousRow in interface CursorcolumnNames - Only column names in this collection will be returnednull if no previous row is foundIOExceptionpublic boolean moveToNextRow()
throws IOException
CursormoveToNextRow in interface Cursortrue if a valid next row was found, false
otherwiseIOExceptionpublic boolean moveToPreviousRow()
throws IOException
CursormoveToPreviousRow in interface Cursortrue if a valid previous row was found, false
otherwiseIOExceptionpublic boolean findRow(RowId rowId) throws IOException
CursorfindRow in interface Cursortrue if a valid row was found with the given id,
false if no row was foundIOExceptionpublic boolean findFirstRow(Column columnPattern, Object valuePattern) throws IOException
CursorWarning, this method always starts searching from the beginning of the Table (you cannot use it to find successive matches).
findFirstRow in interface CursorcolumnPattern - column from the table for this cursor which is being
matched by the valuePatternvaluePattern - value which is equal to the corresponding value in
the matched row. If this object is an instance of
Predicate, it will be
applied to the potential row value instead
(overriding any configured ColumnMatcher)true if a valid row was found with the given value,
false if no row was foundIOExceptionpublic boolean findFirstRow(ColumnImpl columnPattern, Object valuePattern) throws IOException
IOExceptionpublic boolean findNextRow(Column columnPattern, Object valuePattern) throws IOException
CursorfindNextRow in interface CursorcolumnPattern - column from the table for this cursor which is being
matched by the valuePatternvaluePattern - value which is equal to the corresponding value in
the matched row. If this object is an instance of
Predicate, it will be
applied to the potential row value instead
(overriding any configured ColumnMatcher)true if a valid row was found with the given value,
false if no row was foundIOExceptionpublic boolean findNextRow(ColumnImpl columnPattern, Object valuePattern) throws IOException
IOExceptionpublic boolean findFirstRow(Map<String,?> rowPattern) throws IOException
CursorWarning, this method always starts searching from the beginning of the Table (you cannot use it to find successive matches).
findFirstRow in interface CursorrowPattern - column names and values which must be equal to the
corresponding values in the matched row. If a value is
an instance of Predicate, it
will be applied to the potential row value instead
(overriding any configured ColumnMatcher)true if a valid row was found with the given values,
false if no row was foundIOExceptionpublic boolean findNextRow(Map<String,?> rowPattern) throws IOException
CursorfindNextRow in interface CursorrowPattern - column names and values which must be equal to the
corresponding values in the matched row. If a value is
an instance of Predicate, it
will be applied to the potential row value instead
(overriding any configured ColumnMatcher)true if a valid row was found with the given values,
false if no row was foundIOExceptionpublic boolean currentRowMatches(Column columnPattern, Object valuePattern) throws IOException
Cursortrue if the current row matches the given pattern.currentRowMatches in interface CursorcolumnPattern - column from the table for this cursor which is being
matched by the valuePatternvaluePattern - value which is equal to the corresponding value in
the matched row. If this object is an instance of
Predicate, it will be
applied to the potential row value instead
(overriding any configured ColumnMatcher)IOExceptionpublic boolean currentRowMatches(ColumnImpl columnPattern, Object valuePattern) throws IOException
IOExceptionpublic boolean currentRowMatches(Map<String,?> rowPattern) throws IOException
Cursortrue if the current row matches the given pattern.currentRowMatches in interface CursorrowPattern - column names and values which must be equal to the
corresponding values in the matched row. If a value is
an instance of Predicate, it
will be applied to the potential row value instead
(overriding any configured ColumnMatcher)IOExceptionpublic int moveNextRows(int numRows)
throws IOException
CursormoveNextRows in interface CursorIOExceptionpublic int movePreviousRows(int numRows)
throws IOException
CursormovePreviousRows in interface CursorIOExceptionpublic Row getCurrentRow() throws IOException
CursorgetCurrentRow in interface CursorIOExceptionpublic Row getCurrentRow(Collection<String> columnNames) throws IOException
CursorgetCurrentRow in interface CursorcolumnNames - Only column names in this collection will be returnedIOExceptionpublic Object getCurrentRowValue(Column column) throws IOException
CursorgetCurrentRowValue in interface CursorIOExceptionpublic Object getCurrentRowValue(ColumnImpl column) throws IOException
IOExceptionpublic void setCurrentRowValue(Column column, Object value) throws IOException
CursorsetCurrentRowValue in interface CursorIOExceptionpublic void setCurrentRowValue(ColumnImpl column, Object value) throws IOException
IOExceptionCopyright © 2005–2025 OpenHMS. All rights reserved.