Uses of Interface
org.h2.store.RecordReader

Packages that use RecordReader
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
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. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of RecordReader in org.h2.engine
 

Methods in org.h2.engine with parameters of type RecordReader
 Storage Database.getStorage(RecordReader reader, int id, boolean dataFile)
          Get or create the specified storage object.
 

Uses of RecordReader in org.h2.index
 

Classes in org.h2.index that implement RecordReader
 class BtreeIndex
          This is the most common type of index, a b-tree index.
 

Uses of RecordReader in org.h2.store
 

Methods in org.h2.store that return RecordReader
 RecordReader Storage.getRecordReader()
          Get the record parser for this storage.
 

Methods in org.h2.store with parameters of type RecordReader
 void Storage.setReader(RecordReader reader)
          Set the record parser for this storage.
 

Constructors in org.h2.store with parameters of type RecordReader
Storage(Database database, DiskFile file, RecordReader reader, int id)
          Create a new storage object for this file.
 

Uses of RecordReader in org.h2.table
 

Classes in org.h2.table that implement RecordReader
 class TableData
          Most tables are an instance of this class.