Uses of Class
org.h2.store.Page

Packages that use Page
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 Page in org.h2.index
 

Subclasses of Page in org.h2.index
 class PageBtree
          A page that contains index data.
 class PageBtreeLeaf
          A b-tree leaf page that contains index data.
 class PageBtreeNode
          A b-tree node page that contains index data.
 class PageDataLeaf
          A leaf page that contains data of one or multiple rows.
 class PageDataNode
          A leaf page that contains data of one or multiple rows.
 class PageDataOverflow
          Overflow data for a leaf page.
 

Methods in org.h2.index that return Page
static Page PageBtreeLeaf.read(PageBtreeIndex index, Data data, int pageId)
          Read a b-tree leaf page.
static Page PageBtreeNode.read(PageBtreeIndex index, Data data, int pageId)
          Read a b-tree node page.
static Page PageDataLeaf.read(PageDataIndex index, Data data, int pageId)
          Read a data leaf page.
static Page PageDataNode.read(PageDataIndex index, Data data, int pageId)
          Read a data node page.
static Page PageDataOverflow.read(PageStore store, Data data, int pageId)
          Read an overflow page.
 

Uses of Page in org.h2.store
 

Subclasses of Page in org.h2.store
 class PageFreeList
          The list of free pages of a page store.
 class PageStreamData
          A data page of a stream.
 class PageStreamTrunk
          A trunk page of a stream.
 

Methods in org.h2.store that return Page
 Page PageStore.getPage(int pageId)
          Read a page from the store.