MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / move

Method move

java/java/de/crupp/upscaledb/Cursor.java:169–174  ·  view source on GitHub ↗

Moves the Cursor to the direction specified in the flags. This method wraps the native ups_cursor_move function. More information: C documentation @param flags the directio

(int flags)

Source from the content-addressed store, hash-verified

167 * </ul>
168 */
169 public void move(int flags)
170 throws DatabaseException {
171 int status = ups_cursor_move_to(m_handle, flags);
172 if (status != 0)
173 throw new DatabaseException(status);
174 }
175
176 /**
177 * Moves the Cursor to the first Database element

Callers 7

testMoveMethod · 0.95
testMoveNegativeMethod · 0.95
testSelectRangeMethod · 0.95
moveFirstMethod · 0.95
moveLastMethod · 0.95
moveNextMethod · 0.95
movePreviousMethod · 0.95

Calls 1

ups_cursor_move_toMethod · 0.95

Tested by 3

testMoveMethod · 0.76
testMoveNegativeMethod · 0.76
testSelectRangeMethod · 0.76