Uses of Class
org.h2.store.Data

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

Fields in org.h2.index declared as Data
protected  Data PageBtree.data
          The data page.
 

Methods in org.h2.index with parameters of type Data
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 Data in org.h2.store
 

Methods in org.h2.store that return Data
static Data Data.create(DataHandler handler, byte[] buff)
          Create a new data page using the given data for the given handler.
static Data Data.create(DataHandler handler, int capacity)
          Create a new data page for the given handler.
 Data PageStore.createData()
          Create a data object.
 Data PageStore.readPage(int pos)
          Read a page.
 

Methods in org.h2.store with parameters of type Data
 void PageStore.freePage(int pageId, boolean logUndo, Data old)
          Add a page to the free list.
static Row PageLog.readRow(DataReader in, Data data)
          Read a row from an input stream.
 void PageStore.updateRecord(Record record, boolean logUndo, Data old)
          Update a record.
 void Data.writeDataPageNoSize(Data page)
          Append the contents of the given data page to this page.
 void PageStore.writePage(int pageId, Data data)
          Write a page.