Skip to content

Commit b00e93d

Browse files
committed
Add Dokka and Javadoc
1 parent 4c7f2a5 commit b00e93d

File tree

2,359 files changed

+152878
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,359 files changed

+152878
-0
lines changed
+203
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
<HTML>
2+
<HEAD>
3+
<title>alltypes - </title>
4+
<link rel="stylesheet" href="../style.css">
5+
</HEAD>
6+
<BODY>
7+
<h3>All Types</h3>
8+
<table>
9+
<tbody>
10+
<tr>
11+
<td>
12+
<a href="../org.mapdb/-b-tree-map/index.html">org.mapdb.BTreeMap</a></td>
13+
<td>
14+
<p>A scalable concurrent {@link ConcurrentNavigableMap} implementation.
15+
The map is sorted according to the {@linkplain Comparable natural
16+
ordering} of its keys, or by a {@link Comparator} provided at map
17+
creation time.</p>
18+
</td>
19+
</tr>
20+
<tr>
21+
<td>
22+
<a href="../org.mapdb/-concurrency-aware/index.html">org.mapdb.ConcurrencyAware</a></td>
23+
<td>
24+
<p>Concurrency aware, can verify that its configuration is thread safe</p>
25+
</td>
26+
</tr>
27+
<tr>
28+
<td>
29+
<a href="../org.mapdb/-concurrent-navigable-map-extra/index.html">org.mapdb.ConcurrentNavigableMapExtra</a></td>
30+
<td>
31+
</td>
32+
</tr>
33+
<tr>
34+
<td>
35+
<a href="../org.mapdb/-d-b/index.html">org.mapdb.DB</a></td>
36+
<td>
37+
<p>A database with easy access to named maps and other collections.</p>
38+
</td>
39+
</tr>
40+
<tr>
41+
<td>
42+
<a href="../org.mapdb/-d-b-exception/index.html">org.mapdb.DBException</a></td>
43+
<td>
44+
<p>Exception hierarchy for MapDB</p>
45+
</td>
46+
</tr>
47+
<tr>
48+
<td>
49+
<a href="../org.mapdb/-d-b-maker/index.html">org.mapdb.DBMaker</a></td>
50+
<td>
51+
</td>
52+
</tr>
53+
<tr>
54+
<td>
55+
<a href="../org.mapdb/-h-tree-map/index.html">org.mapdb.HTreeMap</a></td>
56+
<td>
57+
<p>Concurrent HashMap which uses IndexTree for hash table</p>
58+
</td>
59+
</tr>
60+
<tr>
61+
<td>
62+
<a href="../org.mapdb/-index-tree-list/index.html">org.mapdb.IndexTreeList</a></td>
63+
<td>
64+
<p><a href="http://docs.oracle.com/javase/6/docs/api/java/util/ArrayList.html">ArrayList</a> like structure backed by tree</p>
65+
</td>
66+
</tr>
67+
<tr>
68+
<td>
69+
<a href="../org.mapdb/-index-tree-long-long-map/index.html">org.mapdb.IndexTreeLongLongMap</a></td>
70+
<td>
71+
<p>Primitive Sorted Map&lt;Long,Long.</p>
72+
</td>
73+
</tr>
74+
<tr>
75+
<td>
76+
<a href="../org.mapdb/-map-extra/index.html">org.mapdb.MapExtra</a></td>
77+
<td>
78+
<p>Extra methods for Map interface</p>
79+
</td>
80+
</tr>
81+
<tr>
82+
<td>
83+
<a href="../org.mapdb/-pump/index.html">org.mapdb.Pump</a></td>
84+
<td>
85+
<p>Data streaming</p>
86+
</td>
87+
</tr>
88+
<tr>
89+
<td>
90+
<a href="../org.mapdb/-queue-long/index.html">org.mapdb.QueueLong</a></td>
91+
<td>
92+
<p>FIFO Queue with option to remove element from middle</p>
93+
</td>
94+
</tr>
95+
<tr>
96+
<td>
97+
<a href="../org.mapdb.volume/-read-only-volume-factory/index.html">org.mapdb.volume.ReadOnlyVolumeFactory</a></td>
98+
<td>
99+
<p>Wraps volume factory and returns volume as readonly</p>
100+
</td>
101+
</tr>
102+
<tr>
103+
<td>
104+
<a href="../org.mapdb.serializer/-serializer-elsa/index.html">org.mapdb.serializer.SerializerElsa</a></td>
105+
<td>
106+
<p>Uses Elsa serialization: http://www.github.com/jankotek/elsa</p>
107+
</td>
108+
</tr>
109+
<tr>
110+
<td>
111+
<a href="../org.mapdb/-sorted-table-map/index.html">org.mapdb.SortedTableMap</a></td>
112+
<td>
113+
<p>Read only Sorted Table Map. It stores data in table and uses binary search to find records</p>
114+
</td>
115+
</tr>
116+
<tr>
117+
<td>
118+
<a href="../org.mapdb/-store/index.html">org.mapdb.Store</a></td>
119+
<td>
120+
<p>Stores records, mutable version</p>
121+
</td>
122+
</tr>
123+
<tr>
124+
<td>
125+
<a href="../org.mapdb/-store-binary/index.html">org.mapdb.StoreBinary</a></td>
126+
<td>
127+
</td>
128+
</tr>
129+
<tr>
130+
<td>
131+
<a href="../org.mapdb/-store-direct/index.html">org.mapdb.StoreDirect</a></td>
132+
<td>
133+
<p>Store which uses binary storage (file, memory buffer...) and updates records on place.
134+
It has memory allocator, so it reuses space freed by deletes and updates.</p>
135+
</td>
136+
</tr>
137+
<tr>
138+
<td>
139+
<a href="../org.mapdb/-store-direct-abstract/index.html">org.mapdb.StoreDirectAbstract</a></td>
140+
<td>
141+
<p>Common utils for StoreDirect, StoreWAL and StoreCached</p>
142+
</td>
143+
</tr>
144+
<tr>
145+
<td>
146+
<a href="../org.mapdb/-store-immutable/index.html">org.mapdb.StoreImmutable</a></td>
147+
<td>
148+
<p>Stores records</p>
149+
</td>
150+
</tr>
151+
<tr>
152+
<td>
153+
<a href="../org.mapdb/-store-on-heap/index.html">org.mapdb.StoreOnHeap</a></td>
154+
<td>
155+
<p>Store which does not use serialization, but puts everything into on-heap Map.</p>
156+
</td>
157+
</tr>
158+
<tr>
159+
<td>
160+
<a href="../org.mapdb/-store-read-only-wrapper/index.html">org.mapdb.StoreReadOnlyWrapper</a></td>
161+
<td>
162+
<p>Wraps Store and throws <code>UnsupportedOperationException("Read-only")</code> on operations which would modify it</p>
163+
</td>
164+
</tr>
165+
<tr>
166+
<td>
167+
<a href="../org.mapdb/-store-trivial/index.html">org.mapdb.StoreTrivial</a></td>
168+
<td>
169+
<p>Store which serializes its content into primitive <code>Map&lt;Long,byte[]&gt;</code>.
170+
It optionally persist its content into file, in this case it supports rollback and durability.</p>
171+
</td>
172+
</tr>
173+
<tr>
174+
<td>
175+
<a href="../org.mapdb/-store-trivial-tx/index.html">org.mapdb.StoreTrivialTx</a></td>
176+
<td>
177+
</td>
178+
</tr>
179+
<tr>
180+
<td>
181+
<a href="../org.mapdb/-store-tx/index.html">org.mapdb.StoreTx</a></td>
182+
<td>
183+
<p>Stores records, transactional version</p>
184+
</td>
185+
</tr>
186+
<tr>
187+
<td>
188+
<a href="../org.mapdb/-store-w-a-l/index.html">org.mapdb.StoreWAL</a></td>
189+
<td>
190+
<p>StoreDirect with write ahead log</p>
191+
</td>
192+
</tr>
193+
<tr>
194+
<td>
195+
<a href="../org.mapdb/-verifiable/index.html">org.mapdb.Verifiable</a></td>
196+
<td>
197+
<p>Class can verify its status and data integrity: collections, Stores...</p>
198+
</td>
199+
</tr>
200+
</tbody>
201+
</table>
202+
</BODY>
203+
</HTML>

0 commit comments

Comments
 (0)