Uses of Class
org.h2.store.Storage

Packages that use Storage
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.log Undo and redo log implementation. 
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 Storage in org.h2.engine
 

Methods in org.h2.engine that return Storage
 Storage Database.getStorage(int id, DiskFile file)
          Get the storage object for the given file.
 Storage Database.getStorage(RecordReader reader, int id, boolean dataFile)
          Get or create the specified storage object.
 

Methods in org.h2.engine that return types with arguments of type Storage
 ObjectArray<Storage> Database.getAllStorages()
           
 

Uses of Storage in org.h2.log
 

Fields in org.h2.log declared as Storage
 Storage RedoLogRecord.storage
          The storage object to where this log record belongs to.
 

Uses of Storage in org.h2.store
 

Methods in org.h2.store with parameters of type Storage
 void DiskFile.addRedoLog(Storage storage, int recordId, int blockCount, DataPage rec)
          Add a redo-log entry to the redo buffer.