Uses of Class
org.h2.index.PageIndex

Packages that use PageIndex
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa. 
 

Uses of PageIndex in org.h2.index
 

Subclasses of PageIndex in org.h2.index
 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.
 

Uses of PageIndex in org.h2.store
 

Methods in org.h2.store with parameters of type PageIndex
 void PageStore.addIndex(PageIndex index)
          Add an index to the in-memory index map.
 void PageStore.addMeta(PageIndex index, Session session)
          Add the meta data of an index.