kyotocabinet-java 0.1.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. data/.document +5 -0
  2. data/Gemfile +15 -0
  3. data/LICENSE.txt +20 -0
  4. data/README.rdoc +19 -0
  5. data/Rakefile +62 -0
  6. data/VERSION +1 -0
  7. data/ext/kyotocabinet-java/.gitignore +2 -0
  8. data/ext/kyotocabinet-java/COPYING +674 -0
  9. data/ext/kyotocabinet-java/Cursor.java +268 -0
  10. data/ext/kyotocabinet-java/DB.java +650 -0
  11. data/ext/kyotocabinet-java/Error.java +257 -0
  12. data/ext/kyotocabinet-java/FileProcessor.java +42 -0
  13. data/ext/kyotocabinet-java/Loader.java +60 -0
  14. data/ext/kyotocabinet-java/Makefile.in +246 -0
  15. data/ext/kyotocabinet-java/MapReduce.java +127 -0
  16. data/ext/kyotocabinet-java/README +26 -0
  17. data/ext/kyotocabinet-java/Test.java +1494 -0
  18. data/ext/kyotocabinet-java/Utility.java +131 -0
  19. data/ext/kyotocabinet-java/VCmakefile +150 -0
  20. data/ext/kyotocabinet-java/ValueIterator.java +49 -0
  21. data/ext/kyotocabinet-java/Visitor.java +56 -0
  22. data/ext/kyotocabinet-java/configure.in +310 -0
  23. data/ext/kyotocabinet-java/doc/allclasses-frame.html +26 -0
  24. data/ext/kyotocabinet-java/doc/allclasses-noframe.html +26 -0
  25. data/ext/kyotocabinet-java/doc/constant-values.html +344 -0
  26. data/ext/kyotocabinet-java/doc/index-all.html +848 -0
  27. data/ext/kyotocabinet-java/doc/index.html +30 -0
  28. data/ext/kyotocabinet-java/doc/kyotocabinet/Cursor.html +711 -0
  29. data/ext/kyotocabinet-java/doc/kyotocabinet/DB.html +1674 -0
  30. data/ext/kyotocabinet-java/doc/kyotocabinet/Error.html +604 -0
  31. data/ext/kyotocabinet-java/doc/kyotocabinet/FileProcessor.html +210 -0
  32. data/ext/kyotocabinet-java/doc/kyotocabinet/MapReduce.html +461 -0
  33. data/ext/kyotocabinet-java/doc/kyotocabinet/Test.html +220 -0
  34. data/ext/kyotocabinet-java/doc/kyotocabinet/Utility.html +413 -0
  35. data/ext/kyotocabinet-java/doc/kyotocabinet/ValueIterator.html +221 -0
  36. data/ext/kyotocabinet-java/doc/kyotocabinet/Visitor.html +283 -0
  37. data/ext/kyotocabinet-java/doc/kyotocabinet/package-frame.html +33 -0
  38. data/ext/kyotocabinet-java/doc/kyotocabinet/package-summary.html +199 -0
  39. data/ext/kyotocabinet-java/doc/kyotocabinet/package-tree.html +141 -0
  40. data/ext/kyotocabinet-java/doc/overview-summary.html +285 -0
  41. data/ext/kyotocabinet-java/doc/overview-tree.html +145 -0
  42. data/ext/kyotocabinet-java/doc/package-list +1 -0
  43. data/ext/kyotocabinet-java/doc/resources/background.gif +0 -0
  44. data/ext/kyotocabinet-java/doc/resources/tab.gif +0 -0
  45. data/ext/kyotocabinet-java/doc/resources/titlebar.gif +0 -0
  46. data/ext/kyotocabinet-java/doc/resources/titlebar_end.gif +0 -0
  47. data/ext/kyotocabinet-java/doc/serialized-form.html +141 -0
  48. data/ext/kyotocabinet-java/doc/stylesheet.css +474 -0
  49. data/ext/kyotocabinet-java/example/KCDBEX1.java +44 -0
  50. data/ext/kyotocabinet-java/example/KCDBEX2.java +44 -0
  51. data/ext/kyotocabinet-java/example/Makefile +59 -0
  52. data/ext/kyotocabinet-java/kyotocabinet.cc +2187 -0
  53. data/ext/kyotocabinet-java/kyotocabinet_Cursor.h +157 -0
  54. data/ext/kyotocabinet-java/kyotocabinet_DB.h +353 -0
  55. data/ext/kyotocabinet-java/kyotocabinet_Error.h +49 -0
  56. data/ext/kyotocabinet-java/kyotocabinet_Error_XBROKEN.h +41 -0
  57. data/ext/kyotocabinet-java/kyotocabinet_Error_XDUPREC.h +41 -0
  58. data/ext/kyotocabinet-java/kyotocabinet_Error_XINVALID.h +41 -0
  59. data/ext/kyotocabinet-java/kyotocabinet_Error_XLOGIC.h +41 -0
  60. data/ext/kyotocabinet-java/kyotocabinet_Error_XMISC.h +41 -0
  61. data/ext/kyotocabinet-java/kyotocabinet_Error_XNOIMPL.h +41 -0
  62. data/ext/kyotocabinet-java/kyotocabinet_Error_XNOPERM.h +41 -0
  63. data/ext/kyotocabinet-java/kyotocabinet_Error_XNOREC.h +41 -0
  64. data/ext/kyotocabinet-java/kyotocabinet_Error_XNOREPOS.h +41 -0
  65. data/ext/kyotocabinet-java/kyotocabinet_Error_XSUCCESS.h +41 -0
  66. data/ext/kyotocabinet-java/kyotocabinet_Error_XSYSTEM.h +41 -0
  67. data/ext/kyotocabinet-java/kyotocabinet_MapReduce.h +33 -0
  68. data/ext/kyotocabinet-java/kyotocabinet_Utility.h +101 -0
  69. data/ext/kyotocabinet-java/kyotocabinet_ValueIterator.h +21 -0
  70. data/ext/kyotocabinet-java/overview.html +177 -0
  71. data/kyotocabinet-java.gemspec +129 -0
  72. data/lib/kyotocabinet-java.rb +141 -0
  73. data/lib/kyotocabinet-java/version.rb +5 -0
  74. metadata +222 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang="en">
4
+ <head>
5
+ <!-- Generated by javadoc (version 1.7.0_04) on Fri May 25 00:40:49 JST 2012 -->
6
+ <title>All Classes (kyotocabinet)</title>
7
+ <meta name="date" content="2012-05-25">
8
+ <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9
+ </head>
10
+ <body>
11
+ <h1 class="bar">All Classes</h1>
12
+ <div class="indexContainer">
13
+ <ul>
14
+ <li><a href="kyotocabinet/Cursor.html" title="class in kyotocabinet" target="classFrame">Cursor</a></li>
15
+ <li><a href="kyotocabinet/DB.html" title="class in kyotocabinet" target="classFrame">DB</a></li>
16
+ <li><a href="kyotocabinet/Error.html" title="class in kyotocabinet" target="classFrame">Error</a></li>
17
+ <li><a href="kyotocabinet/FileProcessor.html" title="interface in kyotocabinet" target="classFrame"><i>FileProcessor</i></a></li>
18
+ <li><a href="kyotocabinet/MapReduce.html" title="class in kyotocabinet" target="classFrame">MapReduce</a></li>
19
+ <li><a href="kyotocabinet/Test.html" title="class in kyotocabinet" target="classFrame">Test</a></li>
20
+ <li><a href="kyotocabinet/Utility.html" title="class in kyotocabinet" target="classFrame">Utility</a></li>
21
+ <li><a href="kyotocabinet/ValueIterator.html" title="class in kyotocabinet" target="classFrame">ValueIterator</a></li>
22
+ <li><a href="kyotocabinet/Visitor.html" title="interface in kyotocabinet" target="classFrame"><i>Visitor</i></a></li>
23
+ </ul>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang="en">
4
+ <head>
5
+ <!-- Generated by javadoc (version 1.7.0_04) on Fri May 25 00:40:49 JST 2012 -->
6
+ <title>All Classes (kyotocabinet)</title>
7
+ <meta name="date" content="2012-05-25">
8
+ <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9
+ </head>
10
+ <body>
11
+ <h1 class="bar">All Classes</h1>
12
+ <div class="indexContainer">
13
+ <ul>
14
+ <li><a href="kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></li>
15
+ <li><a href="kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></li>
16
+ <li><a href="kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></li>
17
+ <li><a href="kyotocabinet/FileProcessor.html" title="interface in kyotocabinet"><i>FileProcessor</i></a></li>
18
+ <li><a href="kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></li>
19
+ <li><a href="kyotocabinet/Test.html" title="class in kyotocabinet">Test</a></li>
20
+ <li><a href="kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></li>
21
+ <li><a href="kyotocabinet/ValueIterator.html" title="class in kyotocabinet">ValueIterator</a></li>
22
+ <li><a href="kyotocabinet/Visitor.html" title="interface in kyotocabinet"><i>Visitor</i></a></li>
23
+ </ul>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,344 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang="en">
4
+ <head>
5
+ <!-- Generated by javadoc (version 1.7.0_04) on Fri May 25 00:40:49 JST 2012 -->
6
+ <title>Constant Field Values (kyotocabinet)</title>
7
+ <meta name="date" content="2012-05-25">
8
+ <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9
+ </head>
10
+ <body>
11
+ <script type="text/javascript"><!--
12
+ if (location.href.indexOf('is-external=true') == -1) {
13
+ parent.document.title="Constant Field Values (kyotocabinet)";
14
+ }
15
+ //-->
16
+ </script>
17
+ <noscript>
18
+ <div>JavaScript is disabled on your browser.</div>
19
+ </noscript>
20
+ <!-- ========= START OF TOP NAVBAR ======= -->
21
+ <div class="topNav"><a name="navbar_top">
22
+ <!-- -->
23
+ </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
24
+ <!-- -->
25
+ </a>
26
+ <ul class="navList" title="Navigation">
27
+ <li><a href="overview-summary.html">Overview</a></li>
28
+ <li><a href="kyotocabinet/package-summary.html">Package</a></li>
29
+ <li>Class</li>
30
+ <li><a href="overview-tree.html">Tree</a></li>
31
+ <li><a href="index-all.html">Index</a></li>
32
+ </ul>
33
+ </div>
34
+ <div class="subNav">
35
+ <ul class="navList">
36
+ <li>Prev</li>
37
+ <li>Next</li>
38
+ </ul>
39
+ <ul class="navList">
40
+ <li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
41
+ <li><a href="constant-values.html" target="_top">No Frames</a></li>
42
+ </ul>
43
+ <ul class="navList" id="allclasses_navbar_top">
44
+ <li><a href="allclasses-noframe.html">All Classes</a></li>
45
+ </ul>
46
+ <div>
47
+ <script type="text/javascript"><!--
48
+ allClassesLink = document.getElementById("allclasses_navbar_top");
49
+ if(window==top) {
50
+ allClassesLink.style.display = "block";
51
+ }
52
+ else {
53
+ allClassesLink.style.display = "none";
54
+ }
55
+ //-->
56
+ </script>
57
+ </div>
58
+ <a name="skip-navbar_top">
59
+ <!-- -->
60
+ </a></div>
61
+ <!-- ========= END OF TOP NAVBAR ========= -->
62
+ <div class="header">
63
+ <h1 title="Constant Field Values" class="title">Constant Field Values</h1>
64
+ <h2 title="Contents">Contents</h2>
65
+ <ul>
66
+ <li><a href="#kyotocabinet">kyotocabinet.*</a></li>
67
+ </ul>
68
+ </div>
69
+ <div class="constantValuesContainer"><a name="kyotocabinet">
70
+ <!-- -->
71
+ </a>
72
+ <h2 title="kyotocabinet">kyotocabinet.*</h2>
73
+ <ul class="blockList">
74
+ <li class="blockList">
75
+ <table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
76
+ <caption><span>kyotocabinet.<a href="kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></span><span class="tabEnd">&nbsp;</span></caption>
77
+ <tr>
78
+ <th class="colFirst" scope="col">Modifier and Type</th>
79
+ <th scope="col">Constant Field</th>
80
+ <th class="colLast" scope="col">Value</th>
81
+ </tr>
82
+ <tbody>
83
+ <tr class="altColor">
84
+ <td class="colFirst"><a name="kyotocabinet.DB.GEXCEPTIONAL">
85
+ <!-- -->
86
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
87
+ <td><code><a href="kyotocabinet/DB.html#GEXCEPTIONAL">GEXCEPTIONAL</a></code></td>
88
+ <td class="colLast"><code>1</code></td>
89
+ </tr>
90
+ <tr class="rowColor">
91
+ <td class="colFirst"><a name="kyotocabinet.DB.MADD">
92
+ <!-- -->
93
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
94
+ <td><code><a href="kyotocabinet/DB.html#MADD">MADD</a></code></td>
95
+ <td class="colLast"><code>1</code></td>
96
+ </tr>
97
+ <tr class="altColor">
98
+ <td class="colFirst"><a name="kyotocabinet.DB.MAPPEND">
99
+ <!-- -->
100
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
101
+ <td><code><a href="kyotocabinet/DB.html#MAPPEND">MAPPEND</a></code></td>
102
+ <td class="colLast"><code>3</code></td>
103
+ </tr>
104
+ <tr class="rowColor">
105
+ <td class="colFirst"><a name="kyotocabinet.DB.MREPLACE">
106
+ <!-- -->
107
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
108
+ <td><code><a href="kyotocabinet/DB.html#MREPLACE">MREPLACE</a></code></td>
109
+ <td class="colLast"><code>2</code></td>
110
+ </tr>
111
+ <tr class="altColor">
112
+ <td class="colFirst"><a name="kyotocabinet.DB.MSET">
113
+ <!-- -->
114
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
115
+ <td><code><a href="kyotocabinet/DB.html#MSET">MSET</a></code></td>
116
+ <td class="colLast"><code>0</code></td>
117
+ </tr>
118
+ <tr class="rowColor">
119
+ <td class="colFirst"><a name="kyotocabinet.DB.OAUTOSYNC">
120
+ <!-- -->
121
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
122
+ <td><code><a href="kyotocabinet/DB.html#OAUTOSYNC">OAUTOSYNC</a></code></td>
123
+ <td class="colLast"><code>32</code></td>
124
+ </tr>
125
+ <tr class="altColor">
126
+ <td class="colFirst"><a name="kyotocabinet.DB.OAUTOTRAN">
127
+ <!-- -->
128
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
129
+ <td><code><a href="kyotocabinet/DB.html#OAUTOTRAN">OAUTOTRAN</a></code></td>
130
+ <td class="colLast"><code>16</code></td>
131
+ </tr>
132
+ <tr class="rowColor">
133
+ <td class="colFirst"><a name="kyotocabinet.DB.OCREATE">
134
+ <!-- -->
135
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
136
+ <td><code><a href="kyotocabinet/DB.html#OCREATE">OCREATE</a></code></td>
137
+ <td class="colLast"><code>4</code></td>
138
+ </tr>
139
+ <tr class="altColor">
140
+ <td class="colFirst"><a name="kyotocabinet.DB.ONOLOCK">
141
+ <!-- -->
142
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
143
+ <td><code><a href="kyotocabinet/DB.html#ONOLOCK">ONOLOCK</a></code></td>
144
+ <td class="colLast"><code>64</code></td>
145
+ </tr>
146
+ <tr class="rowColor">
147
+ <td class="colFirst"><a name="kyotocabinet.DB.ONOREPAIR">
148
+ <!-- -->
149
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
150
+ <td><code><a href="kyotocabinet/DB.html#ONOREPAIR">ONOREPAIR</a></code></td>
151
+ <td class="colLast"><code>256</code></td>
152
+ </tr>
153
+ <tr class="altColor">
154
+ <td class="colFirst"><a name="kyotocabinet.DB.OREADER">
155
+ <!-- -->
156
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
157
+ <td><code><a href="kyotocabinet/DB.html#OREADER">OREADER</a></code></td>
158
+ <td class="colLast"><code>1</code></td>
159
+ </tr>
160
+ <tr class="rowColor">
161
+ <td class="colFirst"><a name="kyotocabinet.DB.OTRUNCATE">
162
+ <!-- -->
163
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
164
+ <td><code><a href="kyotocabinet/DB.html#OTRUNCATE">OTRUNCATE</a></code></td>
165
+ <td class="colLast"><code>8</code></td>
166
+ </tr>
167
+ <tr class="altColor">
168
+ <td class="colFirst"><a name="kyotocabinet.DB.OTRYLOCK">
169
+ <!-- -->
170
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
171
+ <td><code><a href="kyotocabinet/DB.html#OTRYLOCK">OTRYLOCK</a></code></td>
172
+ <td class="colLast"><code>128</code></td>
173
+ </tr>
174
+ <tr class="rowColor">
175
+ <td class="colFirst"><a name="kyotocabinet.DB.OWRITER">
176
+ <!-- -->
177
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
178
+ <td><code><a href="kyotocabinet/DB.html#OWRITER">OWRITER</a></code></td>
179
+ <td class="colLast"><code>2</code></td>
180
+ </tr>
181
+ </tbody>
182
+ </table>
183
+ </li>
184
+ <li class="blockList">
185
+ <table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
186
+ <caption><span>kyotocabinet.<a href="kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></span><span class="tabEnd">&nbsp;</span></caption>
187
+ <tr>
188
+ <th class="colFirst" scope="col">Modifier and Type</th>
189
+ <th scope="col">Constant Field</th>
190
+ <th class="colLast" scope="col">Value</th>
191
+ </tr>
192
+ <tbody>
193
+ <tr class="altColor">
194
+ <td class="colFirst"><a name="kyotocabinet.Error.BROKEN">
195
+ <!-- -->
196
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
197
+ <td><code><a href="kyotocabinet/Error.html#BROKEN">BROKEN</a></code></td>
198
+ <td class="colLast"><code>5</code></td>
199
+ </tr>
200
+ <tr class="rowColor">
201
+ <td class="colFirst"><a name="kyotocabinet.Error.DUPREC">
202
+ <!-- -->
203
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
204
+ <td><code><a href="kyotocabinet/Error.html#DUPREC">DUPREC</a></code></td>
205
+ <td class="colLast"><code>6</code></td>
206
+ </tr>
207
+ <tr class="altColor">
208
+ <td class="colFirst"><a name="kyotocabinet.Error.INVALID">
209
+ <!-- -->
210
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
211
+ <td><code><a href="kyotocabinet/Error.html#INVALID">INVALID</a></code></td>
212
+ <td class="colLast"><code>2</code></td>
213
+ </tr>
214
+ <tr class="rowColor">
215
+ <td class="colFirst"><a name="kyotocabinet.Error.LOGIC">
216
+ <!-- -->
217
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
218
+ <td><code><a href="kyotocabinet/Error.html#LOGIC">LOGIC</a></code></td>
219
+ <td class="colLast"><code>8</code></td>
220
+ </tr>
221
+ <tr class="altColor">
222
+ <td class="colFirst"><a name="kyotocabinet.Error.MISC">
223
+ <!-- -->
224
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
225
+ <td><code><a href="kyotocabinet/Error.html#MISC">MISC</a></code></td>
226
+ <td class="colLast"><code>15</code></td>
227
+ </tr>
228
+ <tr class="rowColor">
229
+ <td class="colFirst"><a name="kyotocabinet.Error.NOIMPL">
230
+ <!-- -->
231
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
232
+ <td><code><a href="kyotocabinet/Error.html#NOIMPL">NOIMPL</a></code></td>
233
+ <td class="colLast"><code>1</code></td>
234
+ </tr>
235
+ <tr class="altColor">
236
+ <td class="colFirst"><a name="kyotocabinet.Error.NOPERM">
237
+ <!-- -->
238
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
239
+ <td><code><a href="kyotocabinet/Error.html#NOPERM">NOPERM</a></code></td>
240
+ <td class="colLast"><code>4</code></td>
241
+ </tr>
242
+ <tr class="rowColor">
243
+ <td class="colFirst"><a name="kyotocabinet.Error.NOREC">
244
+ <!-- -->
245
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
246
+ <td><code><a href="kyotocabinet/Error.html#NOREC">NOREC</a></code></td>
247
+ <td class="colLast"><code>7</code></td>
248
+ </tr>
249
+ <tr class="altColor">
250
+ <td class="colFirst"><a name="kyotocabinet.Error.NOREPOS">
251
+ <!-- -->
252
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
253
+ <td><code><a href="kyotocabinet/Error.html#NOREPOS">NOREPOS</a></code></td>
254
+ <td class="colLast"><code>3</code></td>
255
+ </tr>
256
+ <tr class="rowColor">
257
+ <td class="colFirst"><a name="kyotocabinet.Error.SUCCESS">
258
+ <!-- -->
259
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
260
+ <td><code><a href="kyotocabinet/Error.html#SUCCESS">SUCCESS</a></code></td>
261
+ <td class="colLast"><code>0</code></td>
262
+ </tr>
263
+ <tr class="altColor">
264
+ <td class="colFirst"><a name="kyotocabinet.Error.SYSTEM">
265
+ <!-- -->
266
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
267
+ <td><code><a href="kyotocabinet/Error.html#SYSTEM">SYSTEM</a></code></td>
268
+ <td class="colLast"><code>9</code></td>
269
+ </tr>
270
+ </tbody>
271
+ </table>
272
+ </li>
273
+ <li class="blockList">
274
+ <table border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
275
+ <caption><span>kyotocabinet.<a href="kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></span><span class="tabEnd">&nbsp;</span></caption>
276
+ <tr>
277
+ <th class="colFirst" scope="col">Modifier and Type</th>
278
+ <th scope="col">Constant Field</th>
279
+ <th class="colLast" scope="col">Value</th>
280
+ </tr>
281
+ <tbody>
282
+ <tr class="altColor">
283
+ <td class="colFirst"><a name="kyotocabinet.MapReduce.XNOCOMP">
284
+ <!-- -->
285
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
286
+ <td><code><a href="kyotocabinet/MapReduce.html#XNOCOMP">XNOCOMP</a></code></td>
287
+ <td class="colLast"><code>256</code></td>
288
+ </tr>
289
+ <tr class="rowColor">
290
+ <td class="colFirst"><a name="kyotocabinet.MapReduce.XNOLOCK">
291
+ <!-- -->
292
+ </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
293
+ <td><code><a href="kyotocabinet/MapReduce.html#XNOLOCK">XNOLOCK</a></code></td>
294
+ <td class="colLast"><code>1</code></td>
295
+ </tr>
296
+ </tbody>
297
+ </table>
298
+ </li>
299
+ </ul>
300
+ </div>
301
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
302
+ <div class="bottomNav"><a name="navbar_bottom">
303
+ <!-- -->
304
+ </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
305
+ <!-- -->
306
+ </a>
307
+ <ul class="navList" title="Navigation">
308
+ <li><a href="overview-summary.html">Overview</a></li>
309
+ <li><a href="kyotocabinet/package-summary.html">Package</a></li>
310
+ <li>Class</li>
311
+ <li><a href="overview-tree.html">Tree</a></li>
312
+ <li><a href="index-all.html">Index</a></li>
313
+ </ul>
314
+ </div>
315
+ <div class="subNav">
316
+ <ul class="navList">
317
+ <li>Prev</li>
318
+ <li>Next</li>
319
+ </ul>
320
+ <ul class="navList">
321
+ <li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
322
+ <li><a href="constant-values.html" target="_top">No Frames</a></li>
323
+ </ul>
324
+ <ul class="navList" id="allclasses_navbar_bottom">
325
+ <li><a href="allclasses-noframe.html">All Classes</a></li>
326
+ </ul>
327
+ <div>
328
+ <script type="text/javascript"><!--
329
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
330
+ if(window==top) {
331
+ allClassesLink.style.display = "block";
332
+ }
333
+ else {
334
+ allClassesLink.style.display = "none";
335
+ }
336
+ //-->
337
+ </script>
338
+ </div>
339
+ <a name="skip-navbar_bottom">
340
+ <!-- -->
341
+ </a></div>
342
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
343
+ </body>
344
+ </html>
@@ -0,0 +1,848 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang="en">
4
+ <head>
5
+ <!-- Generated by javadoc (version 1.7.0_04) on Fri May 25 00:40:49 JST 2012 -->
6
+ <title>Index (kyotocabinet)</title>
7
+ <meta name="date" content="2012-05-25">
8
+ <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
9
+ </head>
10
+ <body>
11
+ <script type="text/javascript"><!--
12
+ if (location.href.indexOf('is-external=true') == -1) {
13
+ parent.document.title="Index (kyotocabinet)";
14
+ }
15
+ //-->
16
+ </script>
17
+ <noscript>
18
+ <div>JavaScript is disabled on your browser.</div>
19
+ </noscript>
20
+ <!-- ========= START OF TOP NAVBAR ======= -->
21
+ <div class="topNav"><a name="navbar_top">
22
+ <!-- -->
23
+ </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
24
+ <!-- -->
25
+ </a>
26
+ <ul class="navList" title="Navigation">
27
+ <li><a href="./overview-summary.html">Overview</a></li>
28
+ <li><a href="./kyotocabinet/package-summary.html">Package</a></li>
29
+ <li>Class</li>
30
+ <li><a href="./overview-tree.html">Tree</a></li>
31
+ <li class="navBarCell1Rev">Index</li>
32
+ </ul>
33
+ </div>
34
+ <div class="subNav">
35
+ <ul class="navList">
36
+ <li>Prev</li>
37
+ <li>Next</li>
38
+ </ul>
39
+ <ul class="navList">
40
+ <li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
41
+ <li><a href="index-all.html" target="_top">No Frames</a></li>
42
+ </ul>
43
+ <ul class="navList" id="allclasses_navbar_top">
44
+ <li><a href="./allclasses-noframe.html">All Classes</a></li>
45
+ </ul>
46
+ <div>
47
+ <script type="text/javascript"><!--
48
+ allClassesLink = document.getElementById("allclasses_navbar_top");
49
+ if(window==top) {
50
+ allClassesLink.style.display = "block";
51
+ }
52
+ else {
53
+ allClassesLink.style.display = "none";
54
+ }
55
+ //-->
56
+ </script>
57
+ </div>
58
+ <a name="skip-navbar_top">
59
+ <!-- -->
60
+ </a></div>
61
+ <!-- ========= END OF TOP NAVBAR ========= -->
62
+ <div class="contentContainer"><a href="#_A_">A</a>&nbsp;<a href="#_B_">B</a>&nbsp;<a href="#_C_">C</a>&nbsp;<a href="#_D_">D</a>&nbsp;<a href="#_E_">E</a>&nbsp;<a href="#_F_">F</a>&nbsp;<a href="#_G_">G</a>&nbsp;<a href="#_H_">H</a>&nbsp;<a href="#_I_">I</a>&nbsp;<a href="#_J_">J</a>&nbsp;<a href="#_K_">K</a>&nbsp;<a href="#_L_">L</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_N_">N</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_P_">P</a>&nbsp;<a href="#_R_">R</a>&nbsp;<a href="#_S_">S</a>&nbsp;<a href="#_T_">T</a>&nbsp;<a href="#_U_">U</a>&nbsp;<a href="#_V_">V</a>&nbsp;<a href="#_X_">X</a>&nbsp;<a name="_A_">
63
+ <!-- -->
64
+ </a>
65
+ <h2 class="title">A</h2>
66
+ <dl>
67
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#accept(kyotocabinet.Visitor, boolean, boolean)">accept(Visitor, boolean, boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
68
+ <dd>
69
+ <div class="block">Accept a visitor to the current record.</div>
70
+ </dd>
71
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#accept(byte[], kyotocabinet.Visitor, boolean)">accept(byte[], Visitor, boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
72
+ <dd>
73
+ <div class="block">Accept a visitor to a record.</div>
74
+ </dd>
75
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#accept_bulk(byte[][], kyotocabinet.Visitor, boolean)">accept_bulk(byte[][], Visitor, boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
76
+ <dd>
77
+ <div class="block">Accept a visitor to multiple records at once.</div>
78
+ </dd>
79
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#add(byte[], byte[])">add(byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
80
+ <dd>
81
+ <div class="block">Add a record.</div>
82
+ </dd>
83
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#add(java.lang.String, java.lang.String)">add(String, String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
84
+ <dd>
85
+ <div class="block">Add a record.</div>
86
+ </dd>
87
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#append(byte[], byte[])">append(byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
88
+ <dd>
89
+ <div class="block">Append the value of a record.</div>
90
+ </dd>
91
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#append(java.lang.String, java.lang.String)">append(String, String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
92
+ <dd>
93
+ <div class="block">Append the value of a record.</div>
94
+ </dd>
95
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#atof(java.lang.String)">atof(String)</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
96
+ <dd>
97
+ <div class="block">Convert a string to a real number.</div>
98
+ </dd>
99
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#atoi(java.lang.String)">atoi(String)</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
100
+ <dd>
101
+ <div class="block">Convert a string with a metric prefix to an integer.</div>
102
+ </dd>
103
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#atoix(java.lang.String)">atoix(String)</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
104
+ <dd>
105
+ <div class="block">Convert a string with a metric prefix to an integer.</div>
106
+ </dd>
107
+ </dl>
108
+ <a name="_B_">
109
+ <!-- -->
110
+ </a>
111
+ <h2 class="title">B</h2>
112
+ <dl>
113
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#begin_transaction(boolean)">begin_transaction(boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
114
+ <dd>
115
+ <div class="block">Begin transaction.</div>
116
+ </dd>
117
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#BROKEN">BROKEN</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
118
+ <dd>
119
+ <div class="block">error code: broken file</div>
120
+ </dd>
121
+ </dl>
122
+ <a name="_C_">
123
+ <!-- -->
124
+ </a>
125
+ <h2 class="title">C</h2>
126
+ <dl>
127
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#cas(byte[], byte[], byte[])">cas(byte[], byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
128
+ <dd>
129
+ <div class="block">Perform compare-and-swap.</div>
130
+ </dd>
131
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#cas(java.lang.String, java.lang.String, java.lang.String)">cas(String, String, String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
132
+ <dd>
133
+ <div class="block">Perform compare-and-swap.</div>
134
+ </dd>
135
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#check(byte[])">check(byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
136
+ <dd>
137
+ <div class="block">Check the existence of a record.</div>
138
+ </dd>
139
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#check(java.lang.String)">check(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
140
+ <dd>
141
+ <div class="block">Retrieve the value of a record.</div>
142
+ </dd>
143
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#clear()">clear()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
144
+ <dd>
145
+ <div class="block">Remove all records.</div>
146
+ </dd>
147
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#close()">close()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
148
+ <dd>
149
+ <div class="block">Close the database file.</div>
150
+ </dd>
151
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#code()">code()</a></span> - Method in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
152
+ <dd>
153
+ <div class="block">Get the error code.</div>
154
+ </dd>
155
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#copy(java.lang.String)">copy(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
156
+ <dd>
157
+ <div class="block">Create a copy of the database file.</div>
158
+ </dd>
159
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#count()">count()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
160
+ <dd>
161
+ <div class="block">Get the number of records.</div>
162
+ </dd>
163
+ <dt><a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet"><span class="strong">Cursor</span></a> - Class in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
164
+ <dd>
165
+ <div class="block">Interface of cursor to indicate a record.</div>
166
+ </dd>
167
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#Cursor(kyotocabinet.DB)">Cursor(DB)</a></span> - Constructor for class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
168
+ <dd>
169
+ <div class="block">Create an instance.</div>
170
+ </dd>
171
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#cursor()">cursor()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
172
+ <dd>
173
+ <div class="block">Create a cursor object.</div>
174
+ </dd>
175
+ </dl>
176
+ <a name="_D_">
177
+ <!-- -->
178
+ </a>
179
+ <h2 class="title">D</h2>
180
+ <dl>
181
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#db()">db()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
182
+ <dd>
183
+ <div class="block">Get the database object.</div>
184
+ </dd>
185
+ <dt><a href="./kyotocabinet/DB.html" title="class in kyotocabinet"><span class="strong">DB</span></a> - Class in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
186
+ <dd>
187
+ <div class="block">Interface of database abstraction.</div>
188
+ </dd>
189
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#DB()">DB()</a></span> - Constructor for class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
190
+ <dd>
191
+ <div class="block">Create an instance.</div>
192
+ </dd>
193
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#DB(int)">DB(int)</a></span> - Constructor for class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
194
+ <dd>
195
+ <div class="block">Create an instance with options.</div>
196
+ </dd>
197
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#disable()">disable()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
198
+ <dd>
199
+ <div class="block">Disable the cursor.</div>
200
+ </dd>
201
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#dump_snapshot(java.lang.String)">dump_snapshot(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
202
+ <dd>
203
+ <div class="block">Dump records into a snapshot file.</div>
204
+ </dd>
205
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#DUPREC">DUPREC</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
206
+ <dd>
207
+ <div class="block">error code: record duplication</div>
208
+ </dd>
209
+ </dl>
210
+ <a name="_E_">
211
+ <!-- -->
212
+ </a>
213
+ <h2 class="title">E</h2>
214
+ <dl>
215
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#emit(byte[], byte[])">emit(byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
216
+ <dd>
217
+ <div class="block">Emit a record from the mapper.</div>
218
+ </dd>
219
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#end_transaction(boolean)">end_transaction(boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
220
+ <dd>
221
+ <div class="block">End transaction.</div>
222
+ </dd>
223
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#equals(kyotocabinet.Error)">equals(Error)</a></span> - Method in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
224
+ <dd>
225
+ <div class="block">Check equality.</div>
226
+ </dd>
227
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#error()">error()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
228
+ <dd>
229
+ <div class="block">Get the last happened error.</div>
230
+ </dd>
231
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#error()">error()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
232
+ <dd>
233
+ <div class="block">Get the last happened error.</div>
234
+ </dd>
235
+ <dt><a href="./kyotocabinet/Error.html" title="class in kyotocabinet"><span class="strong">Error</span></a> - Exception in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
236
+ <dd>
237
+ <div class="block">Error data.</div>
238
+ </dd>
239
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#Error()">Error()</a></span> - Constructor for exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
240
+ <dd>
241
+ <div class="block">Create an instance.</div>
242
+ </dd>
243
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#Error(int, java.lang.String)">Error(int, String)</a></span> - Constructor for exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
244
+ <dd>
245
+ <div class="block">Create an instance.</div>
246
+ </dd>
247
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#execute(kyotocabinet.DB, java.lang.String, int)">execute(DB, String, int)</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
248
+ <dd>
249
+ <div class="block">Execute the MapReduce process about a database.</div>
250
+ </dd>
251
+ </dl>
252
+ <a name="_F_">
253
+ <!-- -->
254
+ </a>
255
+ <h2 class="title">F</h2>
256
+ <dl>
257
+ <dt><a href="./kyotocabinet/FileProcessor.html" title="interface in kyotocabinet"><span class="strong">FileProcessor</span></a> - Interface in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
258
+ <dd>
259
+ <div class="block">Interface to process the database file.</div>
260
+ </dd>
261
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#finalize()">finalize()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
262
+ <dd>
263
+ <div class="block">Release resources.</div>
264
+ </dd>
265
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#finalize()">finalize()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
266
+ <dd>
267
+ <div class="block">Release resources.</div>
268
+ </dd>
269
+ </dl>
270
+ <a name="_G_">
271
+ <!-- -->
272
+ </a>
273
+ <h2 class="title">G</h2>
274
+ <dl>
275
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#get(boolean)">get(boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
276
+ <dd>
277
+ <div class="block">Get a pair of the key and the value of the current record.</div>
278
+ </dd>
279
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#get(byte[])">get(byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
280
+ <dd>
281
+ <div class="block">Retrieve the value of a record.</div>
282
+ </dd>
283
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#get(java.lang.String)">get(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
284
+ <dd>
285
+ <div class="block">Retrieve the value of a record.</div>
286
+ </dd>
287
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#get_bulk(byte[][], boolean)">get_bulk(byte[][], boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
288
+ <dd>
289
+ <div class="block">Retrieve records at once.</div>
290
+ </dd>
291
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#get_bulk(java.util.List, boolean)">get_bulk(List&lt;String&gt;, boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
292
+ <dd>
293
+ <div class="block">Retrieve records at once.</div>
294
+ </dd>
295
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#get_key(boolean)">get_key(boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
296
+ <dd>
297
+ <div class="block">Get the key of the current record.</div>
298
+ </dd>
299
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#get_key_str(boolean)">get_key_str(boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
300
+ <dd>
301
+ <div class="block">Get the key of the current record.</div>
302
+ </dd>
303
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#get_str(boolean)">get_str(boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
304
+ <dd>
305
+ <div class="block">Get a pair of the key and the value of the current record.</div>
306
+ </dd>
307
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#get_value(boolean)">get_value(boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
308
+ <dd>
309
+ <div class="block">Get the value of the current record.</div>
310
+ </dd>
311
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#get_value_str(boolean)">get_value_str(boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
312
+ <dd>
313
+ <div class="block">Get the value of the current record.</div>
314
+ </dd>
315
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#GEXCEPTIONAL">GEXCEPTIONAL</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
316
+ <dd>
317
+ <div class="block">generic mode: exceptional mode</div>
318
+ </dd>
319
+ </dl>
320
+ <a name="_H_">
321
+ <!-- -->
322
+ </a>
323
+ <h2 class="title">H</h2>
324
+ <dl>
325
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#hash_fnv(byte[])">hash_fnv(byte[])</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
326
+ <dd>
327
+ <div class="block">Get the hash value of a byte array by FNV hashing.</div>
328
+ </dd>
329
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#hash_murmur(byte[])">hash_murmur(byte[])</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
330
+ <dd>
331
+ <div class="block">Get the hash value of a byte array by MurMur hashing.</div>
332
+ </dd>
333
+ </dl>
334
+ <a name="_I_">
335
+ <!-- -->
336
+ </a>
337
+ <h2 class="title">I</h2>
338
+ <dl>
339
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#increment(byte[], long, long)">increment(byte[], long, long)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
340
+ <dd>
341
+ <div class="block">Add a number to the numeric integer value of a record.</div>
342
+ </dd>
343
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#increment(java.lang.String, long, long)">increment(String, long, long)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
344
+ <dd>
345
+ <div class="block">Add a number to the numeric integer value of a record.</div>
346
+ </dd>
347
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#increment_double(byte[], double, double)">increment_double(byte[], double, double)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
348
+ <dd>
349
+ <div class="block">Add a number to the numeric double value of a record.</div>
350
+ </dd>
351
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#increment_double(java.lang.String, double, double)">increment_double(String, double, double)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
352
+ <dd>
353
+ <div class="block">Add a number to the numeric double value of a record.</div>
354
+ </dd>
355
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#INVALID">INVALID</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
356
+ <dd>
357
+ <div class="block">error code: invalid operation</div>
358
+ </dd>
359
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#iterate(kyotocabinet.Visitor, boolean)">iterate(Visitor, boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
360
+ <dd>
361
+ <div class="block">Iterate to accept a visitor for each record.</div>
362
+ </dd>
363
+ </dl>
364
+ <a name="_J_">
365
+ <!-- -->
366
+ </a>
367
+ <h2 class="title">J</h2>
368
+ <dl>
369
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#jump()">jump()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
370
+ <dd>
371
+ <div class="block">Jump the cursor to the first record for forward scan.</div>
372
+ </dd>
373
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#jump(byte[])">jump(byte[])</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
374
+ <dd>
375
+ <div class="block">Jump the cursor to a record for forward scan.</div>
376
+ </dd>
377
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#jump(java.lang.String)">jump(String)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
378
+ <dd>
379
+ <div class="block">Jump the cursor to a record for forward scan.</div>
380
+ </dd>
381
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#jump_back()">jump_back()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
382
+ <dd>
383
+ <div class="block">Jump the cursor to the last record for backward scan.</div>
384
+ </dd>
385
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#jump_back(byte[])">jump_back(byte[])</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
386
+ <dd>
387
+ <div class="block">Jump the cursor to a record for backward scan.</div>
388
+ </dd>
389
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#jump_back(java.lang.String)">jump_back(String)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
390
+ <dd>
391
+ <div class="block">Jump the cursor to a record for backward scan.</div>
392
+ </dd>
393
+ </dl>
394
+ <a name="_K_">
395
+ <!-- -->
396
+ </a>
397
+ <h2 class="title">K</h2>
398
+ <dl>
399
+ <dt><a href="./kyotocabinet/package-summary.html">kyotocabinet</a> - package kyotocabinet</dt>
400
+ <dd>&nbsp;</dd>
401
+ </dl>
402
+ <a name="_L_">
403
+ <!-- -->
404
+ </a>
405
+ <h2 class="title">L</h2>
406
+ <dl>
407
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#levdist(byte[], byte[])">levdist(byte[], byte[])</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
408
+ <dd>
409
+ <div class="block">Calculate the levenshtein distance of two strings.</div>
410
+ </dd>
411
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#levdist(java.lang.String, java.lang.String)">levdist(String, String)</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
412
+ <dd>
413
+ <div class="block">Calculate the levenshtein distance of two strings.</div>
414
+ </dd>
415
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#load_snapshot(java.lang.String)">load_snapshot(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
416
+ <dd>
417
+ <div class="block">Load records from a snapshot file.</div>
418
+ </dd>
419
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#log(java.lang.String, java.lang.String)">log(String, String)</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
420
+ <dd>
421
+ <div class="block">Process a log message.</div>
422
+ </dd>
423
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#LOGIC">LOGIC</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
424
+ <dd>
425
+ <div class="block">error code: logical inconsistency</div>
426
+ </dd>
427
+ </dl>
428
+ <a name="_M_">
429
+ <!-- -->
430
+ </a>
431
+ <h2 class="title">M</h2>
432
+ <dl>
433
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#MADD">MADD</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
434
+ <dd>
435
+ <div class="block">merge mode: keep the existing value</div>
436
+ </dd>
437
+ <dt><span class="strong"><a href="./kyotocabinet/Test.html#main(java.lang.String[])">main(String[])</a></span> - Static method in class <a href="./kyotocabinet/Test.html" title="class in kyotocabinet">Test</a></dt>
438
+ <dd>
439
+ <div class="block">main routine of the test command</div>
440
+ </dd>
441
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#map(byte[], byte[])">map(byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
442
+ <dd>
443
+ <div class="block">Map a record data.</div>
444
+ </dd>
445
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#MAPPEND">MAPPEND</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
446
+ <dd>
447
+ <div class="block">merge mode: append the new value</div>
448
+ </dd>
449
+ <dt><a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet"><span class="strong">MapReduce</span></a> - Class in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
450
+ <dd>
451
+ <div class="block">MapReduce framework.</div>
452
+ </dd>
453
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#MapReduce()">MapReduce()</a></span> - Constructor for class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
454
+ <dd>&nbsp;</dd>
455
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#match_prefix(java.lang.String, long)">match_prefix(String, long)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
456
+ <dd>
457
+ <div class="block">Get keys matching a prefix string.</div>
458
+ </dd>
459
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#match_regex(java.lang.String, long)">match_regex(String, long)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
460
+ <dd>
461
+ <div class="block">Get keys matching a regular expression string.</div>
462
+ </dd>
463
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#match_similar(java.lang.String, long, boolean, long)">match_similar(String, long, boolean, long)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
464
+ <dd>
465
+ <div class="block">Get keys similar to a string in terms of the levenshtein distance.</div>
466
+ </dd>
467
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#merge(kyotocabinet.DB[], int)">merge(DB[], int)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
468
+ <dd>
469
+ <div class="block">Merge records from other databases.</div>
470
+ </dd>
471
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#message()">message()</a></span> - Method in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
472
+ <dd>
473
+ <div class="block">Get the supplement message.</div>
474
+ </dd>
475
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#midprocess()">midprocess()</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
476
+ <dd>
477
+ <div class="block">Mediate between the map and the reduce phases.</div>
478
+ </dd>
479
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#MISC">MISC</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
480
+ <dd>
481
+ <div class="block">error code: miscellaneous error</div>
482
+ </dd>
483
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#MREPLACE">MREPLACE</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
484
+ <dd>
485
+ <div class="block">merge mode: modify the existing record only</div>
486
+ </dd>
487
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#MSET">MSET</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
488
+ <dd>
489
+ <div class="block">merge mode: overwrite the existing value</div>
490
+ </dd>
491
+ </dl>
492
+ <a name="_N_">
493
+ <!-- -->
494
+ </a>
495
+ <h2 class="title">N</h2>
496
+ <dl>
497
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#name()">name()</a></span> - Method in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
498
+ <dd>
499
+ <div class="block">Get the readable string of the code.</div>
500
+ </dd>
501
+ <dt><span class="strong"><a href="./kyotocabinet/ValueIterator.html#next()">next()</a></span> - Method in class <a href="./kyotocabinet/ValueIterator.html" title="class in kyotocabinet">ValueIterator</a></dt>
502
+ <dd>
503
+ <div class="block">Get the next value.</div>
504
+ </dd>
505
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#NOIMPL">NOIMPL</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
506
+ <dd>
507
+ <div class="block">error code: not implemented</div>
508
+ </dd>
509
+ <dt><span class="strong"><a href="./kyotocabinet/Visitor.html#NOP">NOP</a></span> - Static variable in interface <a href="./kyotocabinet/Visitor.html" title="interface in kyotocabinet">Visitor</a></dt>
510
+ <dd>
511
+ <div class="block">magic data: no operation</div>
512
+ </dd>
513
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#NOPERM">NOPERM</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
514
+ <dd>
515
+ <div class="block">error code: no permission</div>
516
+ </dd>
517
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#NOREC">NOREC</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
518
+ <dd>
519
+ <div class="block">error code: no record</div>
520
+ </dd>
521
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#NOREPOS">NOREPOS</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
522
+ <dd>
523
+ <div class="block">error code: no repository.</div>
524
+ </dd>
525
+ </dl>
526
+ <a name="_O_">
527
+ <!-- -->
528
+ </a>
529
+ <h2 class="title">O</h2>
530
+ <dl>
531
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OAUTOSYNC">OAUTOSYNC</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
532
+ <dd>
533
+ <div class="block">open mode: auto synchronization</div>
534
+ </dd>
535
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OAUTOTRAN">OAUTOTRAN</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
536
+ <dd>
537
+ <div class="block">open mode: auto transaction</div>
538
+ </dd>
539
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#occupy(boolean, kyotocabinet.FileProcessor)">occupy(boolean, FileProcessor)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
540
+ <dd>
541
+ <div class="block">Occupy database by locking and do something meanwhile.</div>
542
+ </dd>
543
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OCREATE">OCREATE</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
544
+ <dd>
545
+ <div class="block">open mode: writer creating</div>
546
+ </dd>
547
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#ONOLOCK">ONOLOCK</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
548
+ <dd>
549
+ <div class="block">open mode: open without locking</div>
550
+ </dd>
551
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#ONOREPAIR">ONOREPAIR</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
552
+ <dd>
553
+ <div class="block">open mode: open without auto repair</div>
554
+ </dd>
555
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#open(java.lang.String, int)">open(String, int)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
556
+ <dd>
557
+ <div class="block">Open a database file.</div>
558
+ </dd>
559
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OREADER">OREADER</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
560
+ <dd>
561
+ <div class="block">open mode: open as a reader</div>
562
+ </dd>
563
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OTRUNCATE">OTRUNCATE</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
564
+ <dd>
565
+ <div class="block">open mode: writer truncating</div>
566
+ </dd>
567
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OTRYLOCK">OTRYLOCK</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
568
+ <dd>
569
+ <div class="block">open mode: lock without blocking</div>
570
+ </dd>
571
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#OWRITER">OWRITER</a></span> - Static variable in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
572
+ <dd>
573
+ <div class="block">open mode: open as a writer</div>
574
+ </dd>
575
+ </dl>
576
+ <a name="_P_">
577
+ <!-- -->
578
+ </a>
579
+ <h2 class="title">P</h2>
580
+ <dl>
581
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#path()">path()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
582
+ <dd>
583
+ <div class="block">Get the path of the database file.</div>
584
+ </dd>
585
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#postprocess()">postprocess()</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
586
+ <dd>
587
+ <div class="block">Postprocess the reduce operations.</div>
588
+ </dd>
589
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#preprocess()">preprocess()</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
590
+ <dd>
591
+ <div class="block">Preprocess the map operations.</div>
592
+ </dd>
593
+ <dt><span class="strong"><a href="./kyotocabinet/FileProcessor.html#process(java.lang.String, long, long)">process(String, long, long)</a></span> - Method in interface <a href="./kyotocabinet/FileProcessor.html" title="interface in kyotocabinet">FileProcessor</a></dt>
594
+ <dd>
595
+ <div class="block">Process the database file.</div>
596
+ </dd>
597
+ </dl>
598
+ <a name="_R_">
599
+ <!-- -->
600
+ </a>
601
+ <h2 class="title">R</h2>
602
+ <dl>
603
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#reduce(byte[], kyotocabinet.ValueIterator)">reduce(byte[], ValueIterator)</a></span> - Method in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
604
+ <dd>
605
+ <div class="block">Reduce a record data.</div>
606
+ </dd>
607
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#remove()">remove()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
608
+ <dd>
609
+ <div class="block">Remove the current record.</div>
610
+ </dd>
611
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#remove(byte[])">remove(byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
612
+ <dd>
613
+ <div class="block">Remove a record.</div>
614
+ </dd>
615
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#remove(java.lang.String)">remove(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
616
+ <dd>&nbsp;</dd>
617
+ <dt><span class="strong"><a href="./kyotocabinet/Visitor.html#REMOVE">REMOVE</a></span> - Static variable in interface <a href="./kyotocabinet/Visitor.html" title="interface in kyotocabinet">Visitor</a></dt>
618
+ <dd>
619
+ <div class="block">magic data: remove the record</div>
620
+ </dd>
621
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#remove_bulk(byte[][], boolean)">remove_bulk(byte[][], boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
622
+ <dd>
623
+ <div class="block">Remove records at once.</div>
624
+ </dd>
625
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#remove_bulk(java.util.List, boolean)">remove_bulk(List&lt;String&gt;, boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
626
+ <dd>
627
+ <div class="block">Remove records at once.</div>
628
+ </dd>
629
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#remove_files_recursively(java.lang.String)">remove_files_recursively(String)</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
630
+ <dd>
631
+ <div class="block">Remove a file or a directory recursively.</div>
632
+ </dd>
633
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#replace(byte[], byte[])">replace(byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
634
+ <dd>
635
+ <div class="block">Replace the value of a record.</div>
636
+ </dd>
637
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#replace(java.lang.String, java.lang.String)">replace(String, String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
638
+ <dd>
639
+ <div class="block">Replace the value of a record.</div>
640
+ </dd>
641
+ </dl>
642
+ <a name="_S_">
643
+ <!-- -->
644
+ </a>
645
+ <h2 class="title">S</h2>
646
+ <dl>
647
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#seize()">seize()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
648
+ <dd>
649
+ <div class="block">Get a pair of the key and the value of the current record and remove it atomically.</div>
650
+ </dd>
651
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#seize(byte[])">seize(byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
652
+ <dd>
653
+ <div class="block">Retrieve the value of a record and remove it atomically.</div>
654
+ </dd>
655
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#seize(java.lang.String)">seize(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
656
+ <dd>
657
+ <div class="block">Retrieve the value of a record and remove it atomically.</div>
658
+ </dd>
659
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#seize_str()">seize_str()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
660
+ <dd>
661
+ <div class="block">Get a pair of the key and the value of the current record and remove it atomically.</div>
662
+ </dd>
663
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#set(byte[], byte[])">set(byte[], byte[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
664
+ <dd>
665
+ <div class="block">Set the value of a record.</div>
666
+ </dd>
667
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#set(java.lang.String, java.lang.String)">set(String, String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
668
+ <dd>
669
+ <div class="block">Set the value of a record.</div>
670
+ </dd>
671
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#set(int, java.lang.String)">set(int, String)</a></span> - Method in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
672
+ <dd>
673
+ <div class="block">Set the error information.</div>
674
+ </dd>
675
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#set_bulk(byte[][], boolean)">set_bulk(byte[][], boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
676
+ <dd>
677
+ <div class="block">Store records at once.</div>
678
+ </dd>
679
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#set_bulk(java.util.Map, boolean)">set_bulk(Map&lt;String, String&gt;, boolean)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
680
+ <dd>
681
+ <div class="block">Store records at once.</div>
682
+ </dd>
683
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#set_value(byte[], boolean)">set_value(byte[], boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
684
+ <dd>
685
+ <div class="block">Set the value of the current record.</div>
686
+ </dd>
687
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#set_value(java.lang.String, boolean)">set_value(String, boolean)</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
688
+ <dd>
689
+ <div class="block">Set the value of the current record.</div>
690
+ </dd>
691
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#size()">size()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
692
+ <dd>
693
+ <div class="block">Get the size of the database file.</div>
694
+ </dd>
695
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#status()">status()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
696
+ <dd>
697
+ <div class="block">Get the miscellaneous status information.</div>
698
+ </dd>
699
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#step()">step()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
700
+ <dd>
701
+ <div class="block">Step the cursor to the next record.</div>
702
+ </dd>
703
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#step_back()">step_back()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
704
+ <dd>
705
+ <div class="block">Step the cursor to the previous record.</div>
706
+ </dd>
707
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#SUCCESS">SUCCESS</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
708
+ <dd>
709
+ <div class="block">error code: success</div>
710
+ </dd>
711
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#synchronize(boolean, kyotocabinet.FileProcessor)">synchronize(boolean, FileProcessor)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
712
+ <dd>
713
+ <div class="block">Synchronize updated contents with the file and the device.</div>
714
+ </dd>
715
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#SYSTEM">SYSTEM</a></span> - Static variable in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
716
+ <dd>
717
+ <div class="block">error code: system error</div>
718
+ </dd>
719
+ </dl>
720
+ <a name="_T_">
721
+ <!-- -->
722
+ </a>
723
+ <h2 class="title">T</h2>
724
+ <dl>
725
+ <dt><a href="./kyotocabinet/Test.html" title="class in kyotocabinet"><span class="strong">Test</span></a> - Class in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
726
+ <dd>
727
+ <div class="block">Test cases.</div>
728
+ </dd>
729
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#time()">time()</a></span> - Static method in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
730
+ <dd>
731
+ <div class="block">Get the current time.</div>
732
+ </dd>
733
+ <dt><span class="strong"><a href="./kyotocabinet/Cursor.html#toString()">toString()</a></span> - Method in class <a href="./kyotocabinet/Cursor.html" title="class in kyotocabinet">Cursor</a></dt>
734
+ <dd>
735
+ <div class="block">Get the string expression.</div>
736
+ </dd>
737
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#toString()">toString()</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
738
+ <dd>
739
+ <div class="block">Get the string expression.</div>
740
+ </dd>
741
+ <dt><span class="strong"><a href="./kyotocabinet/Error.html#toString()">toString()</a></span> - Method in exception <a href="./kyotocabinet/Error.html" title="class in kyotocabinet">Error</a></dt>
742
+ <dd>
743
+ <div class="block">Get the string expression.</div>
744
+ </dd>
745
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#tune_encoding(java.lang.String)">tune_encoding(String)</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
746
+ <dd>
747
+ <div class="block">Set the encoding of external strings.</div>
748
+ </dd>
749
+ <dt><span class="strong"><a href="./kyotocabinet/DB.html#tune_exception_rule(int[])">tune_exception_rule(int[])</a></span> - Method in class <a href="./kyotocabinet/DB.html" title="class in kyotocabinet">DB</a></dt>
750
+ <dd>
751
+ <div class="block">Set the rule about throwing exception.</div>
752
+ </dd>
753
+ </dl>
754
+ <a name="_U_">
755
+ <!-- -->
756
+ </a>
757
+ <h2 class="title">U</h2>
758
+ <dl>
759
+ <dt><a href="./kyotocabinet/Utility.html" title="class in kyotocabinet"><span class="strong">Utility</span></a> - Class in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
760
+ <dd>
761
+ <div class="block">Utility functions.</div>
762
+ </dd>
763
+ </dl>
764
+ <a name="_V_">
765
+ <!-- -->
766
+ </a>
767
+ <h2 class="title">V</h2>
768
+ <dl>
769
+ <dt><a href="./kyotocabinet/ValueIterator.html" title="class in kyotocabinet"><span class="strong">ValueIterator</span></a> - Class in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
770
+ <dd>
771
+ <div class="block">Iterator for record values.</div>
772
+ </dd>
773
+ <dt><span class="strong"><a href="./kyotocabinet/Utility.html#VERSION">VERSION</a></span> - Static variable in class <a href="./kyotocabinet/Utility.html" title="class in kyotocabinet">Utility</a></dt>
774
+ <dd>
775
+ <div class="block">The version information.</div>
776
+ </dd>
777
+ <dt><span class="strong"><a href="./kyotocabinet/Visitor.html#visit_empty(byte[])">visit_empty(byte[])</a></span> - Method in interface <a href="./kyotocabinet/Visitor.html" title="interface in kyotocabinet">Visitor</a></dt>
778
+ <dd>
779
+ <div class="block">Visit a empty record space.</div>
780
+ </dd>
781
+ <dt><span class="strong"><a href="./kyotocabinet/Visitor.html#visit_full(byte[], byte[])">visit_full(byte[], byte[])</a></span> - Method in interface <a href="./kyotocabinet/Visitor.html" title="interface in kyotocabinet">Visitor</a></dt>
782
+ <dd>
783
+ <div class="block">Visit a record.</div>
784
+ </dd>
785
+ <dt><a href="./kyotocabinet/Visitor.html" title="interface in kyotocabinet"><span class="strong">Visitor</span></a> - Interface in <a href="./kyotocabinet/package-summary.html">kyotocabinet</a></dt>
786
+ <dd>
787
+ <div class="block">Interface to access a record.</div>
788
+ </dd>
789
+ </dl>
790
+ <a name="_X_">
791
+ <!-- -->
792
+ </a>
793
+ <h2 class="title">X</h2>
794
+ <dl>
795
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#XNOCOMP">XNOCOMP</a></span> - Static variable in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
796
+ <dd>
797
+ <div class="block">execution option: avoid compression of temporary databases</div>
798
+ </dd>
799
+ <dt><span class="strong"><a href="./kyotocabinet/MapReduce.html#XNOLOCK">XNOLOCK</a></span> - Static variable in class <a href="./kyotocabinet/MapReduce.html" title="class in kyotocabinet">MapReduce</a></dt>
800
+ <dd>
801
+ <div class="block">execution option: avoid locking against update operations</div>
802
+ </dd>
803
+ </dl>
804
+ <a href="#_A_">A</a>&nbsp;<a href="#_B_">B</a>&nbsp;<a href="#_C_">C</a>&nbsp;<a href="#_D_">D</a>&nbsp;<a href="#_E_">E</a>&nbsp;<a href="#_F_">F</a>&nbsp;<a href="#_G_">G</a>&nbsp;<a href="#_H_">H</a>&nbsp;<a href="#_I_">I</a>&nbsp;<a href="#_J_">J</a>&nbsp;<a href="#_K_">K</a>&nbsp;<a href="#_L_">L</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_N_">N</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_P_">P</a>&nbsp;<a href="#_R_">R</a>&nbsp;<a href="#_S_">S</a>&nbsp;<a href="#_T_">T</a>&nbsp;<a href="#_U_">U</a>&nbsp;<a href="#_V_">V</a>&nbsp;<a href="#_X_">X</a>&nbsp;</div>
805
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
806
+ <div class="bottomNav"><a name="navbar_bottom">
807
+ <!-- -->
808
+ </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
809
+ <!-- -->
810
+ </a>
811
+ <ul class="navList" title="Navigation">
812
+ <li><a href="./overview-summary.html">Overview</a></li>
813
+ <li><a href="./kyotocabinet/package-summary.html">Package</a></li>
814
+ <li>Class</li>
815
+ <li><a href="./overview-tree.html">Tree</a></li>
816
+ <li class="navBarCell1Rev">Index</li>
817
+ </ul>
818
+ </div>
819
+ <div class="subNav">
820
+ <ul class="navList">
821
+ <li>Prev</li>
822
+ <li>Next</li>
823
+ </ul>
824
+ <ul class="navList">
825
+ <li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
826
+ <li><a href="index-all.html" target="_top">No Frames</a></li>
827
+ </ul>
828
+ <ul class="navList" id="allclasses_navbar_bottom">
829
+ <li><a href="./allclasses-noframe.html">All Classes</a></li>
830
+ </ul>
831
+ <div>
832
+ <script type="text/javascript"><!--
833
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
834
+ if(window==top) {
835
+ allClassesLink.style.display = "block";
836
+ }
837
+ else {
838
+ allClassesLink.style.display = "none";
839
+ }
840
+ //-->
841
+ </script>
842
+ </div>
843
+ <a name="skip-navbar_bottom">
844
+ <!-- -->
845
+ </a></div>
846
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
847
+ </body>
848
+ </html>