Uses of Interface
org.h2.index.Cursor
-
Packages that use Cursor Package Description org.h2.index Various table index implementations, as well as cursors to navigate in an index.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database. -
-
Uses of Cursor in org.h2.index
Classes in org.h2.index that implement Cursor Modifier and Type Class Description (package private) classDualCursorThe cursor implementation for the DUAL index.classIndexCursorThe filter used to walk through an index.classLinkedCursorThe cursor implementation for the linked index.classMetaCursorAn index for a meta data table.(package private) classRangeCursorThe cursor implementation for the range index.classSingleRowCursorA cursor with at most one row.classViewCursorThe cursor implementation of a view index.(package private) classVirtualTableCursorA cursor for a virtual table.Fields in org.h2.index declared as Cursor Modifier and Type Field Description private CursorIndexCursor. cursorMethods in org.h2.index that return Cursor Modifier and Type Method Description CursorDualIndex. find(SessionLocal session, SearchRow first, SearchRow last)abstract CursorIndex. find(SessionLocal session, SearchRow first, SearchRow last)Find a row or a list of rows and create a cursor to iterate over the result.CursorLinkedIndex. find(SessionLocal session, SearchRow first, SearchRow last)CursorMetaIndex. find(SessionLocal session, SearchRow first, SearchRow last)CursorRangeIndex. find(SessionLocal session, SearchRow first, SearchRow last)CursorViewIndex. find(SessionLocal session, SearchRow first, SearchRow last)private CursorViewIndex. find(SessionLocal session, SearchRow first, SearchRow last, SearchRow intersection)CursorVirtualConstructedTableIndex. find(SessionLocal session, SearchRow first, SearchRow last)CursorSpatialIndex. findByGeometry(SessionLocal session, SearchRow first, SearchRow last, SearchRow intersection)Find a row or a list of rows and create a cursor to iterate over the result.CursorViewIndex. findByGeometry(SessionLocal session, SearchRow first, SearchRow last, SearchRow intersection)CursorDualIndex. findFirstOrLast(SessionLocal session, boolean first)CursorIndex. findFirstOrLast(SessionLocal session, boolean first)Find the first (or last) value of this index.CursorRangeIndex. findFirstOrLast(SessionLocal session, boolean first)CursorIndex. findNext(SessionLocal session, SearchRow higherThan, SearchRow last)Find a row or a list of rows that is larger and create a cursor to iterate over the result.private CursorViewIndex. findRecursive(SearchRow first, SearchRow last) -
Uses of Cursor in org.h2.mvstore.db
Classes in org.h2.mvstore.db that implement Cursor Modifier and Type Class Description (package private) static classMVPrimaryIndex.MVStoreCursorA cursor.(package private) static classMVSecondaryIndex.MVStoreCursorA cursor.private static classMVSpatialIndex.MVStoreCursorA cursor.Methods in org.h2.mvstore.db that return Cursor Modifier and Type Method Description CursorMVDelegateIndex. find(SessionLocal session, SearchRow first, SearchRow last)private CursorMVPrimaryIndex. find(SessionLocal session, java.lang.Long first, java.lang.Long last)CursorMVPrimaryIndex. find(SessionLocal session, SearchRow first, SearchRow last)private CursorMVSecondaryIndex. find(SessionLocal session, SearchRow first, boolean bigger, SearchRow last)CursorMVSecondaryIndex. find(SessionLocal session, SearchRow first, SearchRow last)CursorMVSpatialIndex. find(SessionLocal session, SearchRow first, SearchRow last)CursorMVSpatialIndex. findByGeometry(SessionLocal session, SearchRow first, SearchRow last, SearchRow intersection)CursorMVDelegateIndex. findFirstOrLast(SessionLocal session, boolean first)CursorMVPrimaryIndex. findFirstOrLast(SessionLocal session, boolean first)CursorMVSecondaryIndex. findFirstOrLast(SessionLocal session, boolean first)CursorMVSecondaryIndex. findNext(SessionLocal session, SearchRow higherThan, SearchRow last)
-