Uses of Class
org.h2.index.BaseIndex

Packages that use BaseIndex
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
 

Uses of BaseIndex in org.h2.index
 

Subclasses of BaseIndex in org.h2.index
 class FunctionIndex
          An index for a function that returns a result set.
 class HashIndex
          An unique index based on an in-memory hash map.
 class LinkedIndex
          A linked index is a index for a linked (remote) table.
 class MetaIndex
          The index implementation for meta data tables.
 class NonUniqueHashIndex
          A non-unique index based on an in-memory hash map.
 class PageBtreeIndex
          This is the most common type of index, a b tree index.
 class PageDataIndex
          The scan index allows to access a row by key.
 class PageDelegateIndex
          An index that delegates indexing to the page data index.
 class PageIndex
          A page store index.
 class RangeIndex
          An index for the SYSTEM_RANGE table.
 class ScanIndex
          The scan index is not really an 'index' in the strict sense, because it can not be used for direct lookup.
 class TreeIndex
          The tree index is an in-memory index based on a binary AVL trees.
 class ViewIndex
          This object represents a virtual index for a query.