Uses of Interface
neustore.base.Data

Packages that use Data
neustore.base   
neustore.heapfile   
 

Uses of Data in neustore.base
 

Classes in neustore.base that implement Data
 class StringData
          A class that stores a variable-length String.
 

Uses of Data in neustore.heapfile
 

Methods in neustore.heapfile that return Data
 Data HeapFilePage.search(Key key)
          Searches for a record in the page.
 Data HeapFile.search(Key key)
          Searches the record by the given key.
 

Methods in neustore.heapfile with parameters of type Data
 void HeapFilePage.insert(Key key, Data data)
          Inserts a new record into this page.
 void HeapFile.insert(Key key, Data data)
          Inserts a new record into the heap file.
 

Constructors in neustore.heapfile with parameters of type Data
HeapFile(DBBuffer _buffer, java.lang.String filename, boolean isCreate, Key _sampleKey, Data _sampleData)
          The HeapFile constructor.
HeapFilePage(int _pageSize, Key _sampleKey, Data _sampleData)
          Constructor fo HeapFilePage.