| Atomic | 
class AtomicA small toolkit of classes that support lock-free thread-safe programming on single records. In essence, the classes here provide provide an atomic conditional update operation of the form:   This method (which varies in argument types across different classes) atomically sets a record to the  The specifications of these methods enable to employ more efficient internal DB locking. CompareAndSwap operation is typically faster than using transactions, global lock or other concurrent protection.  Instances of classes Atomic.Boolean, Atomic.Integer, Atomic.Long, Atomic.String and Atomic.Var each provide access and updates to a single record of the corresponding type. Each class also provides appropriate utility methods for that type. For example, classes    Atomic classes are designed primarily as building blocks for implementing non-blocking data structures and related infrastructure classes. The   Atomic classes are not general purpose replacements for   You can also hold floats using   | 
| BTreeMap | 
class BTreeMap<K, V> : Verifiable, Closeable, Serializable, ConcurrencyAware, ConcurrentNavigableMap<K, V>, ConcurrentNavigableMapExtra<K, V>A scalable concurrent {@link ConcurrentNavigableMap} implementation. The map is sorted according to the {@linkplain Comparable natural ordering} of its keys, or by a {@link Comparator} provided at map creation time.  | 
| BTreeMapJava | 
open class BTreeMapJavaJava code for BTreeMap. Mostly performance sensitive code.  | 
| CC | 
interface CCCompilation Configuration. Uses dead code elimination to remove `if(CONSTANT){code}` blocks  | 
| ConcurrencyAware | 
interface ConcurrencyAwareConcurrency aware, can verify that its configuration is thread safe  | 
| ConcurrentNavigableMapExtra | 
interface ConcurrentNavigableMapExtra<K, V> : ConcurrentNavigableMap<K, V>, MapExtra<K, V>, ConcurrentNavigableMap2<K, V> | 
| DB | 
open class DB : Closeable, ConcurrencyAwareA database with easy access to named maps and other collections.  | 
| DBMaker | 
object DBMaker | 
| DataIO | 
class DataIOVarious IO classes and utilities..  | 
| DataInput2 | 
abstract class DataInput2 : DataInputUsed for serialization  | 
| DataOutput2 | 
open class DataOutput2 : OutputStream, DataOutputOutput of serialization  | 
| HTreeMap | 
class HTreeMap<K, V> : ConcurrentMap<K, V>, ConcurrencyAware, MapExtra<K, V>, Verifiable, CloseableConcurrent HashMap which uses IndexTree for hash table  | 
| IndexTreeList | 
class IndexTreeList<E> : AbstractList<E?>ArrayList like structure backed by tree  | 
| IndexTreeLongLongMap | 
class IndexTreeLongLongMapPrimitive Sorted Map<Long,Long.  | 
| MapExtra | 
interface MapExtra<K, V> : ConcurrentMap<K, V>Extra methods for Map interface  | 
| MapModificationListener | 
interface MapModificationListener<K : Any, V : Any>Callback interface for MapExtra modification notifications.  | 
| Pump | 
object PumpData streaming  | 
| QueueLong | 
class QueueLong : VerifiableFIFO Queue with option to remove element from middle  | 
| QueueLongTakeUntil | 
interface QueueLongTakeUntilCallback interface for QueueLong  | 
| Serializer | 
interface Serializer<A : Any> : Comparator<A>This interface specifies how Java Objects are serialized and de-serialized and also how objects are compared, hashed and tested for equality for use with MapDB. Implementing classes do not have to be thread safe.  | 
| SortedTableMap | 
class SortedTableMap<K, V> : ConcurrentMap<K, V>, ConcurrentNavigableMap<K, V>, ConcurrentNavigableMapExtra<K, V>Read only Sorted Table Map. It stores data in table and uses binary search to find records  | 
| Store | 
interface Store : StoreImmutable, Verifiable, ConcurrencyAwareStores records, mutable version  | 
| StoreBinary | 
interface StoreBinary : Store | 
| StoreBinaryGetLong | 
interface StoreBinaryGetLongBinary operations performed on StoreBinary which retuns long  | 
| StoreDirect | 
class StoreDirect : StoreDirectAbstract, StoreBinaryStore which uses binary storage (file, memory buffer...) and updates records on place. It has memory allocator, so it reuses space freed by deletes and updates.  | 
| StoreDirectAbstract | 
abstract class StoreDirectAbstract : StoreCommon utils for StoreDirect, StoreWAL and StoreCached  | 
| StoreImmutable | 
interface StoreImmutableStores records  | 
| StoreOnHeap | 
class StoreOnHeap : StoreStore which does not use serialization, but puts everything into on-heap Map.  | 
| StoreReadOnlyWrapper | 
class StoreReadOnlyWrapper : StoreWraps Store and throws   | 
| StoreTrivial | 
open class StoreTrivial : StoreStore which serializes its content into primitive   | 
| StoreTrivialTx | 
class StoreTrivialTx : StoreTrivial, StoreTx | 
| StoreTx | 
interface StoreTx : StoreStores records, transactional version  | 
| StoreWAL | 
class StoreWAL : StoreDirectAbstract, StoreTxStoreDirect with write ahead log  | 
| Verifiable | 
interface VerifiableClass can verify its status and data integrity: collections, Stores...  | 
| WriteAheadLog | 
open class WriteAheadLogWAL shared between StoreWAL  | 
| DBException | 
open class DBException : RuntimeExceptionException hierarchy for MapDB  |