Uses of Interface
neustore.base.Key

Packages that use Key
neustore.base   
neustore.heapfile   
 

Uses of Key in neustore.base
 

Classes in neustore.base that implement Key
 class IntKey
          An integer key.
 

Methods in neustore.base with parameters of type Key
 int IntKey.compareTo(Key key2)
           
 

Uses of Key in neustore.heapfile
 

Methods in neustore.heapfile with parameters of type Key
 boolean HeapFilePage.delete(Key key)
          Deletes a record from the page.
 boolean HeapFile.delete(Key key)
          Deletes the record by the given key.
 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.
 Data HeapFilePage.search(Key key)
          Searches for a record in the page.
 Data HeapFile.search(Key key)
          Searches the record by the given key.
 

Constructors in neustore.heapfile with parameters of type Key
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.