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.result Implementation of row and internal result sets. 
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.result
 

Methods in org.h2.result with parameters of type Data
 int Row.getByteCount(Data dummy)
          Get the number of bytes required for the data.
 

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 buffer using the given data for the given handler.
static Data Data.create(DataHandler handler, int capacity)
          Create a new buffer 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.logUndo(Page page, Data old)
          Write an undo log entry if required.
static Row PageLog.readRow(DataReader in, Data data)
          Read a row from an input stream.
 void PageStore.writePage(int pageId, Data data)
          Write a page.