You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pirk.apache.org by ea...@apache.org on 2016/07/24 15:49:05 UTC

[2/5] incubator-pirk git commit: [PIRK-25] Additional comments and tidy-up - closes apache/incubator-pirk#25

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/LocalFileSystemStore.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/LocalFileSystemStore.html b/docs/org/apache/pirk/serialization/LocalFileSystemStore.html
index d55edd7..92859f0 100644
--- a/docs/org/apache/pirk/serialization/LocalFileSystemStore.html
+++ b/docs/org/apache/pirk/serialization/LocalFileSystemStore.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>LocalFileSystemStore</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
@@ -121,7 +121,9 @@ extends java.lang.Object</pre>
 </td>
 </tr>
 <tr class="rowColor">
-<td class="colOne"><code><strong><a href="../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#LocalFileSystemStore(org.apache.pirk.serialization.SerializationService)">LocalFileSystemStore</a></strong>(<a href="../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</code>&nbsp;</td>
+<td class="colOne"><code><strong><a href="../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#LocalFileSystemStore(org.apache.pirk.serialization.SerializationService)">LocalFileSystemStore</a></strong>(<a href="../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</code>
+<div class="block">Creates a new storage service on the local file system using the given serializer.</div>
+</td>
 </tr>
 </table>
 </li>
@@ -141,12 +143,16 @@ extends java.lang.Object</pre>
 <tr class="altColor">
 <td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#recall(java.io.File,%20java.lang.Class)">recall</a></strong>(java.io.File&nbsp;file,
-      java.lang.Class&lt;T&gt;&nbsp;type)</code>&nbsp;</td>
+      java.lang.Class&lt;T&gt;&nbsp;type)</code>
+<div class="block">Returns the object stored in the local file system at the given file location.</div>
+</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#recall(java.lang.String,%20java.lang.Class)">recall</a></strong>(java.lang.String&nbsp;path,
-      java.lang.Class&lt;T&gt;&nbsp;type)</code>&nbsp;</td>
+      java.lang.Class&lt;T&gt;&nbsp;type)</code>
+<div class="block">Returns the object stored in the local file system at the given path.</div>
+</td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
@@ -155,12 +161,16 @@ extends java.lang.Object</pre>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#store(java.io.File,%20org.apache.pirk.serialization.Storable)">store</a></strong>(java.io.File&nbsp;file,
-     <a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>&nbsp;</td>
+     <a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>
+<div class="block">Stores the given object at the given file location.</div>
+</td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#store(java.lang.String,%20org.apache.pirk.serialization.Storable)">store</a></strong>(java.lang.String&nbsp;path,
-     <a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>&nbsp;</td>
+     <a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>
+<div class="block">Stores the given object at the given path.</div>
+</td>
 </tr>
 </table>
 <ul class="blockList">
@@ -201,6 +211,7 @@ extends java.lang.Object</pre>
 <li class="blockList">
 <h4>LocalFileSystemStore</h4>
 <pre>public&nbsp;LocalFileSystemStore(<a href="../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</pre>
+<div class="block">Creates a new storage service on the local file system using the given serializer.</div>
 </li>
 </ul>
 </li>
@@ -220,8 +231,10 @@ extends java.lang.Object</pre>
 <pre>public&nbsp;void&nbsp;store(java.lang.String&nbsp;path,
          <a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)
            throws java.io.IOException</pre>
-<dl><dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code></dd></dl>
+<div class="block">Stores the given object at the given path. The object is serialized using the configured serializer.</div>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>path</code> - The local file system path.</dd><dd><code>obj</code> - The object to store.</dd>
+<dt><span class="strong">Throws:</span></dt>
+<dd><code>java.io.IOException</code> - If a problem occurs storing the object.</dd></dl>
 </li>
 </ul>
 <a name="store(java.io.File, org.apache.pirk.serialization.Storable)">
@@ -233,8 +246,10 @@ extends java.lang.Object</pre>
 <pre>public&nbsp;void&nbsp;store(java.io.File&nbsp;file,
          <a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)
            throws java.io.IOException</pre>
-<dl><dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code></dd></dl>
+<div class="block">Stores the given object at the given file location. The object is serialized using the configured serializer.</div>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>path</code> - The local file system location to store the object.</dd><dd><code>obj</code> - The object to store.</dd>
+<dt><span class="strong">Throws:</span></dt>
+<dd><code>java.io.IOException</code> - If a problem occurs storing the object.</dd></dl>
 </li>
 </ul>
 <a name="recall(java.lang.String, java.lang.Class)">
@@ -246,8 +261,11 @@ extends java.lang.Object</pre>
 <pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;recall(java.lang.String&nbsp;path,
            java.lang.Class&lt;T&gt;&nbsp;type)
          throws java.io.IOException</pre>
-<dl><dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code></dd></dl>
+<div class="block">Returns the object stored in the local file system at the given path.</div>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>path</code> - The local file system path.</dd><dd><code>type</code> - The type of object being retrieved.</dd>
+<dt><span class="strong">Returns:</span></dt><dd>The object retrieved from the store.</dd>
+<dt><span class="strong">Throws:</span></dt>
+<dd><code>java.io.IOException</code> - If a problem occurs retrieving the object.</dd></dl>
 </li>
 </ul>
 <a name="recall(java.io.File, java.lang.Class)">
@@ -259,8 +277,11 @@ extends java.lang.Object</pre>
 <pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;recall(java.io.File&nbsp;file,
            java.lang.Class&lt;T&gt;&nbsp;type)
          throws java.io.IOException</pre>
-<dl><dt><span class="strong">Throws:</span></dt>
-<dd><code>java.io.IOException</code></dd></dl>
+<div class="block">Returns the object stored in the local file system at the given file location.</div>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>file</code> - The local file system location.</dd><dd><code>type</code> - The type of object being retrieved.</dd>
+<dt><span class="strong">Returns:</span></dt><dd>The object retrieved from the store.</dd>
+<dt><span class="strong">Throws:</span></dt>
+<dd><code>java.io.IOException</code> - If a problem occurs retrieving the object.</dd></dl>
 </li>
 </ul>
 <a name="setSerializer(org.apache.pirk.serialization.SerializationService)">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/SerializationService.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/SerializationService.html b/docs/org/apache/pirk/serialization/SerializationService.html
index cbde976..869666f 100644
--- a/docs/org/apache/pirk/serialization/SerializationService.html
+++ b/docs/org/apache/pirk/serialization/SerializationService.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>SerializationService</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/Storable.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/Storable.html b/docs/org/apache/pirk/serialization/Storable.html
index fd3462a..e9192fc 100644
--- a/docs/org/apache/pirk/serialization/Storable.html
+++ b/docs/org/apache/pirk/serialization/Storable.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>Storable</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
@@ -93,6 +93,7 @@
 <hr>
 <br>
 <pre>public interface <span class="strong">Storable</span></pre>
+<div class="block">Marker interface for objects that can be stored in a storage service.</div>
 </li>
 </ul>
 </div>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/class-use/HadoopFileSystemStore.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/class-use/HadoopFileSystemStore.html b/docs/org/apache/pirk/serialization/class-use/HadoopFileSystemStore.html
index 6ff8b50..6e42bc3 100644
--- a/docs/org/apache/pirk/serialization/class-use/HadoopFileSystemStore.html
+++ b/docs/org/apache/pirk/serialization/class-use/HadoopFileSystemStore.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.serialization.HadoopFileSystemStore</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/class-use/JavaSerializer.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/class-use/JavaSerializer.html b/docs/org/apache/pirk/serialization/class-use/JavaSerializer.html
index 8bfc2ce..2fcf0ab 100644
--- a/docs/org/apache/pirk/serialization/class-use/JavaSerializer.html
+++ b/docs/org/apache/pirk/serialization/class-use/JavaSerializer.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.serialization.JavaSerializer</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/class-use/JsonSerializer.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/class-use/JsonSerializer.html b/docs/org/apache/pirk/serialization/class-use/JsonSerializer.html
index 951dc5a..73a26c2 100644
--- a/docs/org/apache/pirk/serialization/class-use/JsonSerializer.html
+++ b/docs/org/apache/pirk/serialization/class-use/JsonSerializer.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.serialization.JsonSerializer</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/class-use/LocalFileSystemStore.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/class-use/LocalFileSystemStore.html b/docs/org/apache/pirk/serialization/class-use/LocalFileSystemStore.html
index 55a0759..5d51579 100644
--- a/docs/org/apache/pirk/serialization/class-use/LocalFileSystemStore.html
+++ b/docs/org/apache/pirk/serialization/class-use/LocalFileSystemStore.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.serialization.LocalFileSystemStore</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/class-use/SerializationService.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/class-use/SerializationService.html b/docs/org/apache/pirk/serialization/class-use/SerializationService.html
index 9268b0f..f29ea47 100644
--- a/docs/org/apache/pirk/serialization/class-use/SerializationService.html
+++ b/docs/org/apache/pirk/serialization/class-use/SerializationService.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.serialization.SerializationService</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
@@ -113,10 +113,14 @@
 <tbody>
 <tr class="altColor">
 <td class="colLast"><code><strong><a href="../../../../../org/apache/pirk/serialization/HadoopFileSystemStore.html#HadoopFileSystemStore(org.apache.hadoop.fs.FileSystem,%20org.apache.pirk.serialization.SerializationService)">HadoopFileSystemStore</a></strong>(org.apache.hadoop.fs.FileSystem&nbsp;fs,
-                     <a href="../../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</code>&nbsp;</td>
+                     <a href="../../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</code>
+<div class="block">Creates a new storage service on the given HDFS file system using the given serializer</div>
+</td>
 </tr>
 <tr class="rowColor">
-<td class="colLast"><code><strong><a href="../../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#LocalFileSystemStore(org.apache.pirk.serialization.SerializationService)">LocalFileSystemStore</a></strong>(<a href="../../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</code>&nbsp;</td>
+<td class="colLast"><code><strong><a href="../../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#LocalFileSystemStore(org.apache.pirk.serialization.SerializationService)">LocalFileSystemStore</a></strong>(<a href="../../../../../org/apache/pirk/serialization/SerializationService.html" title="class in org.apache.pirk.serialization">SerializationService</a>&nbsp;serial)</code>
+<div class="block">Creates a new storage service on the local file system using the given serializer.</div>
+</td>
 </tr>
 </tbody>
 </table>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/class-use/Storable.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/class-use/Storable.html b/docs/org/apache/pirk/serialization/class-use/Storable.html
index 626da28..2cf94ff 100644
--- a/docs/org/apache/pirk/serialization/class-use/Storable.html
+++ b/docs/org/apache/pirk/serialization/class-use/Storable.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Interface org.apache.pirk.serialization.Storable</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
@@ -170,22 +170,30 @@
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><span class="strong">LocalFileSystemStore.</span><code><strong><a href="../../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#store(java.io.File,%20org.apache.pirk.serialization.Storable)">store</a></strong>(java.io.File&nbsp;file,
-     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>&nbsp;</td>
+     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>
+<div class="block">Stores the given object at the given file location.</div>
+</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><span class="strong">HadoopFileSystemStore.</span><code><strong><a href="../../../../../org/apache/pirk/serialization/HadoopFileSystemStore.html#store(org.apache.hadoop.fs.Path,%20org.apache.pirk.serialization.Storable)">store</a></strong>(org.apache.hadoop.fs.Path&nbsp;path,
-     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>&nbsp;</td>
+     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>
+<div class="block">Store the given object at into the HDFS file system at the given path.</div>
+</td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><span class="strong">LocalFileSystemStore.</span><code><strong><a href="../../../../../org/apache/pirk/serialization/LocalFileSystemStore.html#store(java.lang.String,%20org.apache.pirk.serialization.Storable)">store</a></strong>(java.lang.String&nbsp;path,
-     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>&nbsp;</td>
+     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>
+<div class="block">Stores the given object at the given path.</div>
+</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><span class="strong">HadoopFileSystemStore.</span><code><strong><a href="../../../../../org/apache/pirk/serialization/HadoopFileSystemStore.html#store(java.lang.String,%20org.apache.pirk.serialization.Storable)">store</a></strong>(java.lang.String&nbsp;pathName,
-     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;value)</code>&nbsp;</td>
+     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;value)</code>
+<div class="block">Store the given object into the HDFS file system at the given path name.</div>
+</td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>byte[]</code></td>
@@ -204,7 +212,9 @@
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><span class="strong">JavaSerializer.</span><code><strong><a href="../../../../../org/apache/pirk/serialization/JavaSerializer.html#write(java.io.OutputStream,%20org.apache.pirk.serialization.Storable)">write</a></strong>(java.io.OutputStream&nbsp;stream,
-     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>&nbsp;</td>
+     <a href="../../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a>&nbsp;obj)</code>
+<div class="block">Stores the given object on the given stream using Java serialization.</div>
+</td>
 </tr>
 </tbody>
 </table>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/package-frame.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/package-frame.html b/docs/org/apache/pirk/serialization/package-frame.html
index 7723349..f5867b0 100644
--- a/docs/org/apache/pirk/serialization/package-frame.html
+++ b/docs/org/apache/pirk/serialization/package-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.serialization</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/package-summary.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/package-summary.html b/docs/org/apache/pirk/serialization/package-summary.html
index 6824a97..3279167 100644
--- a/docs/org/apache/pirk/serialization/package-summary.html
+++ b/docs/org/apache/pirk/serialization/package-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.serialization</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
@@ -77,7 +77,9 @@
 <tbody>
 <tr class="altColor">
 <td class="colFirst"><a href="../../../../org/apache/pirk/serialization/Storable.html" title="interface in org.apache.pirk.serialization">Storable</a></td>
-<td class="colLast">&nbsp;</td>
+<td class="colLast">
+<div class="block">Marker interface for objects that can be stored in a storage service.</div>
+</td>
 </tr>
 </tbody>
 </table>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/package-tree.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/package-tree.html b/docs/org/apache/pirk/serialization/package-tree.html
index 8bbf661..b810682 100644
--- a/docs/org/apache/pirk/serialization/package-tree.html
+++ b/docs/org/apache/pirk/serialization/package-tree.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.serialization Class Hierarchy</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/serialization/package-use.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/serialization/package-use.html b/docs/org/apache/pirk/serialization/package-use.html
index c3616e3..eceb174 100644
--- a/docs/org/apache/pirk/serialization/package-use.html
+++ b/docs/org/apache/pirk/serialization/package-use.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Package org.apache.pirk.serialization</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
@@ -104,7 +104,9 @@
 </tr>
 <tbody>
 <tr class="altColor">
-<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.querier.wideskies">Storable</a>&nbsp;</td>
+<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.querier.wideskies">Storable</a>
+<div class="block">Marker interface for objects that can be stored in a storage service.</div>
+</td>
 </tr>
 </tbody>
 </table>
@@ -119,7 +121,9 @@
 </tr>
 <tbody>
 <tr class="altColor">
-<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.query.wideskies">Storable</a>&nbsp;</td>
+<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.query.wideskies">Storable</a>
+<div class="block">Marker interface for objects that can be stored in a storage service.</div>
+</td>
 </tr>
 </tbody>
 </table>
@@ -134,7 +138,9 @@
 </tr>
 <tbody>
 <tr class="altColor">
-<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.response.wideskies">Storable</a>&nbsp;</td>
+<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.response.wideskies">Storable</a>
+<div class="block">Marker interface for objects that can be stored in a storage service.</div>
+</td>
 </tr>
 </tbody>
 </table>
@@ -152,7 +158,9 @@
 <td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/SerializationService.html#org.apache.pirk.serialization">SerializationService</a>&nbsp;</td>
 </tr>
 <tr class="rowColor">
-<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.serialization">Storable</a>&nbsp;</td>
+<td class="colOne"><a href="../../../../org/apache/pirk/serialization/class-use/Storable.html#org.apache.pirk.serialization">Storable</a>
+<div class="block">Marker interface for objects that can be stored in a storage service.</div>
+</td>
 </tr>
 </tbody>
 </table>

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/DistributedTestCLI.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/DistributedTestCLI.html b/docs/org/apache/pirk/test/distributed/DistributedTestCLI.html
index 6fe4a48..5c3bffe 100644
--- a/docs/org/apache/pirk/test/distributed/DistributedTestCLI.html
+++ b/docs/org/apache/pirk/test/distributed/DistributedTestCLI.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:56 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:25 EDT 2016 -->
 <title>DistributedTestCLI</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/DistributedTestDriver.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/DistributedTestDriver.html b/docs/org/apache/pirk/test/distributed/DistributedTestDriver.html
index 607970b..e7c0cee 100644
--- a/docs/org/apache/pirk/test/distributed/DistributedTestDriver.html
+++ b/docs/org/apache/pirk/test/distributed/DistributedTestDriver.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:56 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:25 EDT 2016 -->
 <title>DistributedTestDriver</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/class-use/DistributedTestCLI.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/class-use/DistributedTestCLI.html b/docs/org/apache/pirk/test/distributed/class-use/DistributedTestCLI.html
index df281c1..0385f68 100644
--- a/docs/org/apache/pirk/test/distributed/class-use/DistributedTestCLI.html
+++ b/docs/org/apache/pirk/test/distributed/class-use/DistributedTestCLI.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.distributed.DistributedTestCLI</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/class-use/DistributedTestDriver.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/class-use/DistributedTestDriver.html b/docs/org/apache/pirk/test/distributed/class-use/DistributedTestDriver.html
index d6471cc..e2193b6 100644
--- a/docs/org/apache/pirk/test/distributed/class-use/DistributedTestDriver.html
+++ b/docs/org/apache/pirk/test/distributed/class-use/DistributedTestDriver.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.distributed.DistributedTestDriver</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/package-frame.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/package-frame.html b/docs/org/apache/pirk/test/distributed/package-frame.html
index 8c897a3..536f2dd 100644
--- a/docs/org/apache/pirk/test/distributed/package-frame.html
+++ b/docs/org/apache/pirk/test/distributed/package-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.distributed</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/package-summary.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/package-summary.html b/docs/org/apache/pirk/test/distributed/package-summary.html
index bc3aae1..7b85203 100644
--- a/docs/org/apache/pirk/test/distributed/package-summary.html
+++ b/docs/org/apache/pirk/test/distributed/package-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.distributed</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/package-tree.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/package-tree.html b/docs/org/apache/pirk/test/distributed/package-tree.html
index ce35a93..2bd025a 100644
--- a/docs/org/apache/pirk/test/distributed/package-tree.html
+++ b/docs/org/apache/pirk/test/distributed/package-tree.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.distributed Class Hierarchy</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/package-use.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/package-use.html b/docs/org/apache/pirk/test/distributed/package-use.html
index af7a7ab..4468f2d 100644
--- a/docs/org/apache/pirk/test/distributed/package-use.html
+++ b/docs/org/apache/pirk/test/distributed/package-use.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Package org.apache.pirk.test.distributed</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/testsuite/DistTestSuite.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/testsuite/DistTestSuite.html b/docs/org/apache/pirk/test/distributed/testsuite/DistTestSuite.html
index 76786cf..cfc50e7 100644
--- a/docs/org/apache/pirk/test/distributed/testsuite/DistTestSuite.html
+++ b/docs/org/apache/pirk/test/distributed/testsuite/DistTestSuite.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>DistTestSuite</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/testsuite/class-use/DistTestSuite.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/testsuite/class-use/DistTestSuite.html b/docs/org/apache/pirk/test/distributed/testsuite/class-use/DistTestSuite.html
index 6b9a423..1d89352 100644
--- a/docs/org/apache/pirk/test/distributed/testsuite/class-use/DistTestSuite.html
+++ b/docs/org/apache/pirk/test/distributed/testsuite/class-use/DistTestSuite.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.distributed.testsuite.DistTestSuite</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/testsuite/package-frame.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/testsuite/package-frame.html b/docs/org/apache/pirk/test/distributed/testsuite/package-frame.html
index 918bc40..f97dc26 100644
--- a/docs/org/apache/pirk/test/distributed/testsuite/package-frame.html
+++ b/docs/org/apache/pirk/test/distributed/testsuite/package-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.distributed.testsuite</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/testsuite/package-summary.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/testsuite/package-summary.html b/docs/org/apache/pirk/test/distributed/testsuite/package-summary.html
index 4933e8e..3567366 100644
--- a/docs/org/apache/pirk/test/distributed/testsuite/package-summary.html
+++ b/docs/org/apache/pirk/test/distributed/testsuite/package-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.distributed.testsuite</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/testsuite/package-tree.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/testsuite/package-tree.html b/docs/org/apache/pirk/test/distributed/testsuite/package-tree.html
index fd1ffad..15eb6f1 100644
--- a/docs/org/apache/pirk/test/distributed/testsuite/package-tree.html
+++ b/docs/org/apache/pirk/test/distributed/testsuite/package-tree.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.distributed.testsuite Class Hierarchy</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/distributed/testsuite/package-use.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/distributed/testsuite/package-use.html b/docs/org/apache/pirk/test/distributed/testsuite/package-use.html
index e80a198..fe63ffb 100644
--- a/docs/org/apache/pirk/test/distributed/testsuite/package-use.html
+++ b/docs/org/apache/pirk/test/distributed/testsuite/package-use.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Package org.apache.pirk.test.distributed.testsuite</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/BaseTests.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/BaseTests.html b/docs/org/apache/pirk/test/utils/BaseTests.html
index e62df44..d6cb7c1 100644
--- a/docs/org/apache/pirk/test/utils/BaseTests.html
+++ b/docs/org/apache/pirk/test/utils/BaseTests.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:57 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:26 EDT 2016 -->
 <title>BaseTests</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/Inputs.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/Inputs.html b/docs/org/apache/pirk/test/utils/Inputs.html
index 2184a7a..9ab45dd 100644
--- a/docs/org/apache/pirk/test/utils/Inputs.html
+++ b/docs/org/apache/pirk/test/utils/Inputs.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:57 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:26 EDT 2016 -->
 <title>Inputs</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/StandaloneQuery.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/StandaloneQuery.html b/docs/org/apache/pirk/test/utils/StandaloneQuery.html
index 2905a64..53f539c 100644
--- a/docs/org/apache/pirk/test/utils/StandaloneQuery.html
+++ b/docs/org/apache/pirk/test/utils/StandaloneQuery.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:57 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:26 EDT 2016 -->
 <title>StandaloneQuery</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/TestUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/TestUtils.html b/docs/org/apache/pirk/test/utils/TestUtils.html
index 016ad2a..7cc9edf 100644
--- a/docs/org/apache/pirk/test/utils/TestUtils.html
+++ b/docs/org/apache/pirk/test/utils/TestUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:57 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:26 EDT 2016 -->
 <title>TestUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/class-use/BaseTests.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/class-use/BaseTests.html b/docs/org/apache/pirk/test/utils/class-use/BaseTests.html
index 23d88b9..39d5239 100644
--- a/docs/org/apache/pirk/test/utils/class-use/BaseTests.html
+++ b/docs/org/apache/pirk/test/utils/class-use/BaseTests.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.utils.BaseTests</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/class-use/Inputs.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/class-use/Inputs.html b/docs/org/apache/pirk/test/utils/class-use/Inputs.html
index 79cbfa1..573ef8a 100644
--- a/docs/org/apache/pirk/test/utils/class-use/Inputs.html
+++ b/docs/org/apache/pirk/test/utils/class-use/Inputs.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.utils.Inputs</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/class-use/StandaloneQuery.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/class-use/StandaloneQuery.html b/docs/org/apache/pirk/test/utils/class-use/StandaloneQuery.html
index 6166a11..13ca293 100644
--- a/docs/org/apache/pirk/test/utils/class-use/StandaloneQuery.html
+++ b/docs/org/apache/pirk/test/utils/class-use/StandaloneQuery.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.utils.StandaloneQuery</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/class-use/TestUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/class-use/TestUtils.html b/docs/org/apache/pirk/test/utils/class-use/TestUtils.html
index 2816c3e..901a3d8 100644
--- a/docs/org/apache/pirk/test/utils/class-use/TestUtils.html
+++ b/docs/org/apache/pirk/test/utils/class-use/TestUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.test.utils.TestUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/package-frame.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/package-frame.html b/docs/org/apache/pirk/test/utils/package-frame.html
index ec16918..c225bef 100644
--- a/docs/org/apache/pirk/test/utils/package-frame.html
+++ b/docs/org/apache/pirk/test/utils/package-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.utils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/package-summary.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/package-summary.html b/docs/org/apache/pirk/test/utils/package-summary.html
index a86c26d..449533b 100644
--- a/docs/org/apache/pirk/test/utils/package-summary.html
+++ b/docs/org/apache/pirk/test/utils/package-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.utils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/package-tree.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/package-tree.html b/docs/org/apache/pirk/test/utils/package-tree.html
index 4dbeb70..2fe8f9e 100644
--- a/docs/org/apache/pirk/test/utils/package-tree.html
+++ b/docs/org/apache/pirk/test/utils/package-tree.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.test.utils Class Hierarchy</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/test/utils/package-use.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/test/utils/package-use.html b/docs/org/apache/pirk/test/utils/package-use.html
index d0d992c..1008acd 100644
--- a/docs/org/apache/pirk/test/utils/package-use.html
+++ b/docs/org/apache/pirk/test/utils/package-use.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Package org.apache.pirk.test.utils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/CSVOutputUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/CSVOutputUtils.html b/docs/org/apache/pirk/utils/CSVOutputUtils.html
index f8fe074..2e402c8 100644
--- a/docs/org/apache/pirk/utils/CSVOutputUtils.html
+++ b/docs/org/apache/pirk/utils/CSVOutputUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>CSVOutputUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/EpochDateParser.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/EpochDateParser.html b/docs/org/apache/pirk/utils/EpochDateParser.html
index af76173..e876f06 100644
--- a/docs/org/apache/pirk/utils/EpochDateParser.html
+++ b/docs/org/apache/pirk/utils/EpochDateParser.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>EpochDateParser</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/FileConst.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/FileConst.html b/docs/org/apache/pirk/utils/FileConst.html
index 94b6e09..4e97292 100644
--- a/docs/org/apache/pirk/utils/FileConst.html
+++ b/docs/org/apache/pirk/utils/FileConst.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>FileConst</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/FileIOUtils.Callable.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/FileIOUtils.Callable.html b/docs/org/apache/pirk/utils/FileIOUtils.Callable.html
index 4d87986..31505cc 100644
--- a/docs/org/apache/pirk/utils/FileIOUtils.Callable.html
+++ b/docs/org/apache/pirk/utils/FileIOUtils.Callable.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>FileIOUtils.Callable</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/FileIOUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/FileIOUtils.html b/docs/org/apache/pirk/utils/FileIOUtils.html
index 725cfc8..bfcaa01 100644
--- a/docs/org/apache/pirk/utils/FileIOUtils.html
+++ b/docs/org/apache/pirk/utils/FileIOUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>FileIOUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/HDFS.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/HDFS.html b/docs/org/apache/pirk/utils/HDFS.html
index cbab30f..963046b 100644
--- a/docs/org/apache/pirk/utils/HDFS.html
+++ b/docs/org/apache/pirk/utils/HDFS.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>HDFS</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/ISO8601DateParser.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/ISO8601DateParser.html b/docs/org/apache/pirk/utils/ISO8601DateParser.html
index 8a764b4..b0580e7 100644
--- a/docs/org/apache/pirk/utils/ISO8601DateParser.html
+++ b/docs/org/apache/pirk/utils/ISO8601DateParser.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>ISO8601DateParser</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/KeyedHash.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/KeyedHash.html b/docs/org/apache/pirk/utils/KeyedHash.html
index 82af690..b4f5c0f 100644
--- a/docs/org/apache/pirk/utils/KeyedHash.html
+++ b/docs/org/apache/pirk/utils/KeyedHash.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>KeyedHash</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/PIRException.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/PIRException.html b/docs/org/apache/pirk/utils/PIRException.html
index 003e0bc..735ed61 100644
--- a/docs/org/apache/pirk/utils/PIRException.html
+++ b/docs/org/apache/pirk/utils/PIRException.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>PIRException</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/QueryParserUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/QueryParserUtils.html b/docs/org/apache/pirk/utils/QueryParserUtils.html
index 8f0d3c6..6482817 100644
--- a/docs/org/apache/pirk/utils/QueryParserUtils.html
+++ b/docs/org/apache/pirk/utils/QueryParserUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>QueryParserUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/StopListUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/StopListUtils.html b/docs/org/apache/pirk/utils/StopListUtils.html
index fac50c6..d5215e8 100644
--- a/docs/org/apache/pirk/utils/StopListUtils.html
+++ b/docs/org/apache/pirk/utils/StopListUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>StopListUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/StringUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/StringUtils.html b/docs/org/apache/pirk/utils/StringUtils.html
index 1daaf11..de2e139 100644
--- a/docs/org/apache/pirk/utils/StringUtils.html
+++ b/docs/org/apache/pirk/utils/StringUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>StringUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/SystemConfiguration.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/SystemConfiguration.html b/docs/org/apache/pirk/utils/SystemConfiguration.html
index 856a391..ca14f05 100644
--- a/docs/org/apache/pirk/utils/SystemConfiguration.html
+++ b/docs/org/apache/pirk/utils/SystemConfiguration.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>SystemConfiguration</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/CSVOutputUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/CSVOutputUtils.html b/docs/org/apache/pirk/utils/class-use/CSVOutputUtils.html
index a180306..6708e58 100644
--- a/docs/org/apache/pirk/utils/class-use/CSVOutputUtils.html
+++ b/docs/org/apache/pirk/utils/class-use/CSVOutputUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.CSVOutputUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/EpochDateParser.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/EpochDateParser.html b/docs/org/apache/pirk/utils/class-use/EpochDateParser.html
index 5e43ee8..b348bd3 100644
--- a/docs/org/apache/pirk/utils/class-use/EpochDateParser.html
+++ b/docs/org/apache/pirk/utils/class-use/EpochDateParser.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.EpochDateParser</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/FileConst.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/FileConst.html b/docs/org/apache/pirk/utils/class-use/FileConst.html
index 22320d7..6f13898 100644
--- a/docs/org/apache/pirk/utils/class-use/FileConst.html
+++ b/docs/org/apache/pirk/utils/class-use/FileConst.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.FileConst</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/FileIOUtils.Callable.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/FileIOUtils.Callable.html b/docs/org/apache/pirk/utils/class-use/FileIOUtils.Callable.html
index 7750d53..4eb176a 100644
--- a/docs/org/apache/pirk/utils/class-use/FileIOUtils.Callable.html
+++ b/docs/org/apache/pirk/utils/class-use/FileIOUtils.Callable.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Interface org.apache.pirk.utils.FileIOUtils.Callable</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/FileIOUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/FileIOUtils.html b/docs/org/apache/pirk/utils/class-use/FileIOUtils.html
index 5b39e83..7de6c6e 100644
--- a/docs/org/apache/pirk/utils/class-use/FileIOUtils.html
+++ b/docs/org/apache/pirk/utils/class-use/FileIOUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.FileIOUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/HDFS.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/HDFS.html b/docs/org/apache/pirk/utils/class-use/HDFS.html
index 09899d4..e8111ef 100644
--- a/docs/org/apache/pirk/utils/class-use/HDFS.html
+++ b/docs/org/apache/pirk/utils/class-use/HDFS.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.HDFS</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/ISO8601DateParser.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/ISO8601DateParser.html b/docs/org/apache/pirk/utils/class-use/ISO8601DateParser.html
index c3399cd..2a68c44 100644
--- a/docs/org/apache/pirk/utils/class-use/ISO8601DateParser.html
+++ b/docs/org/apache/pirk/utils/class-use/ISO8601DateParser.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.ISO8601DateParser</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/KeyedHash.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/KeyedHash.html b/docs/org/apache/pirk/utils/class-use/KeyedHash.html
index 22e83a8..9210815 100644
--- a/docs/org/apache/pirk/utils/class-use/KeyedHash.html
+++ b/docs/org/apache/pirk/utils/class-use/KeyedHash.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.KeyedHash</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/PIRException.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/PIRException.html b/docs/org/apache/pirk/utils/class-use/PIRException.html
index a37e3d4..2e7f3f0 100644
--- a/docs/org/apache/pirk/utils/class-use/PIRException.html
+++ b/docs/org/apache/pirk/utils/class-use/PIRException.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.PIRException</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/QueryParserUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/QueryParserUtils.html b/docs/org/apache/pirk/utils/class-use/QueryParserUtils.html
index f08bc8d..bf049ca 100644
--- a/docs/org/apache/pirk/utils/class-use/QueryParserUtils.html
+++ b/docs/org/apache/pirk/utils/class-use/QueryParserUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.QueryParserUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/StopListUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/StopListUtils.html b/docs/org/apache/pirk/utils/class-use/StopListUtils.html
index 6d7ba2c..74558ca 100644
--- a/docs/org/apache/pirk/utils/class-use/StopListUtils.html
+++ b/docs/org/apache/pirk/utils/class-use/StopListUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.StopListUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/StringUtils.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/StringUtils.html b/docs/org/apache/pirk/utils/class-use/StringUtils.html
index 49eba79..d3e1f6e 100644
--- a/docs/org/apache/pirk/utils/class-use/StringUtils.html
+++ b/docs/org/apache/pirk/utils/class-use/StringUtils.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.StringUtils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/class-use/SystemConfiguration.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/class-use/SystemConfiguration.html b/docs/org/apache/pirk/utils/class-use/SystemConfiguration.html
index d483bc3..2adb2b7 100644
--- a/docs/org/apache/pirk/utils/class-use/SystemConfiguration.html
+++ b/docs/org/apache/pirk/utils/class-use/SystemConfiguration.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class org.apache.pirk.utils.SystemConfiguration</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/package-frame.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/package-frame.html b/docs/org/apache/pirk/utils/package-frame.html
index 8b9c474..683163f 100644
--- a/docs/org/apache/pirk/utils/package-frame.html
+++ b/docs/org/apache/pirk/utils/package-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.utils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/package-summary.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/package-summary.html b/docs/org/apache/pirk/utils/package-summary.html
index 2a139eb..f99270c 100644
--- a/docs/org/apache/pirk/utils/package-summary.html
+++ b/docs/org/apache/pirk/utils/package-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.utils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/package-tree.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/package-tree.html b/docs/org/apache/pirk/utils/package-tree.html
index e828493..6f31a20 100644
--- a/docs/org/apache/pirk/utils/package-tree.html
+++ b/docs/org/apache/pirk/utils/package-tree.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>org.apache.pirk.utils Class Hierarchy</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/org/apache/pirk/utils/package-use.html
----------------------------------------------------------------------
diff --git a/docs/org/apache/pirk/utils/package-use.html b/docs/org/apache/pirk/utils/package-use.html
index c0f4da5..258c4de 100644
--- a/docs/org/apache/pirk/utils/package-use.html
+++ b/docs/org/apache/pirk/utils/package-use.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Package org.apache.pirk.utils</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/overview-frame.html
----------------------------------------------------------------------
diff --git a/docs/overview-frame.html b/docs/overview-frame.html
index d567324..c8e152a 100644
--- a/docs/overview-frame.html
+++ b/docs/overview-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>Overview List</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/overview-summary.html
----------------------------------------------------------------------
diff --git a/docs/overview-summary.html b/docs/overview-summary.html
index 2960b72..3db2b5e 100644
--- a/docs/overview-summary.html
+++ b/docs/overview-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:09:00 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Overview</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/overview-tree.html
----------------------------------------------------------------------
diff --git a/docs/overview-tree.html b/docs/overview-tree.html
index 18ba6c1..b759753 100644
--- a/docs/overview-tree.html
+++ b/docs/overview-tree.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Class Hierarchy</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/serialized-form.html
----------------------------------------------------------------------
diff --git a/docs/serialized-form.html b/docs/serialized-form.html
index 0b9a9ff..3680132 100644
--- a/docs/serialized-form.html
+++ b/docs/serialized-form.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Serialized Form</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/ISO8601DateParserTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/ISO8601DateParserTest.html b/docs/test/general/ISO8601DateParserTest.html
index 8ff9f5d..fa77dd9 100644
--- a/docs/test/general/ISO8601DateParserTest.html
+++ b/docs/test/general/ISO8601DateParserTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:58 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>ISO8601DateParserTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/KeyedHashTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/KeyedHashTest.html b/docs/test/general/KeyedHashTest.html
index ba49682..f9c8d66 100644
--- a/docs/test/general/KeyedHashTest.html
+++ b/docs/test/general/KeyedHashTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>KeyedHashTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/PaillierTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/PaillierTest.html b/docs/test/general/PaillierTest.html
index 07f990f..588b543 100644
--- a/docs/test/general/PaillierTest.html
+++ b/docs/test/general/PaillierTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>PaillierTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/PartitionUtilsTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/PartitionUtilsTest.html b/docs/test/general/PartitionUtilsTest.html
index 0640cdb..ffcb626 100644
--- a/docs/test/general/PartitionUtilsTest.html
+++ b/docs/test/general/PartitionUtilsTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>PartitionUtilsTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/QueryParserUtilsTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/QueryParserUtilsTest.html b/docs/test/general/QueryParserUtilsTest.html
index 0ff0611..fd3aaad 100644
--- a/docs/test/general/QueryParserUtilsTest.html
+++ b/docs/test/general/QueryParserUtilsTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:27 EDT 2016 -->
 <title>QueryParserUtilsTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/class-use/ISO8601DateParserTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/class-use/ISO8601DateParserTest.html b/docs/test/general/class-use/ISO8601DateParserTest.html
index d9b5aa0..4a29a10 100644
--- a/docs/test/general/class-use/ISO8601DateParserTest.html
+++ b/docs/test/general/class-use/ISO8601DateParserTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class test.general.ISO8601DateParserTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/class-use/KeyedHashTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/class-use/KeyedHashTest.html b/docs/test/general/class-use/KeyedHashTest.html
index e99590c..b581eaf 100644
--- a/docs/test/general/class-use/KeyedHashTest.html
+++ b/docs/test/general/class-use/KeyedHashTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class test.general.KeyedHashTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/class-use/PaillierTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/class-use/PaillierTest.html b/docs/test/general/class-use/PaillierTest.html
index 4d0f2c3..e0645d0 100644
--- a/docs/test/general/class-use/PaillierTest.html
+++ b/docs/test/general/class-use/PaillierTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class test.general.PaillierTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/class-use/PartitionUtilsTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/class-use/PartitionUtilsTest.html b/docs/test/general/class-use/PartitionUtilsTest.html
index ab18b16..41e5e29 100644
--- a/docs/test/general/class-use/PartitionUtilsTest.html
+++ b/docs/test/general/class-use/PartitionUtilsTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class test.general.PartitionUtilsTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/class-use/QueryParserUtilsTest.html
----------------------------------------------------------------------
diff --git a/docs/test/general/class-use/QueryParserUtilsTest.html b/docs/test/general/class-use/QueryParserUtilsTest.html
index 14d1b7d..eeb04d3 100644
--- a/docs/test/general/class-use/QueryParserUtilsTest.html
+++ b/docs/test/general/class-use/QueryParserUtilsTest.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>Uses of Class test.general.QueryParserUtilsTest</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/package-frame.html
----------------------------------------------------------------------
diff --git a/docs/test/general/package-frame.html b/docs/test/general/package-frame.html
index dfd3c8a..6116544 100644
--- a/docs/test/general/package-frame.html
+++ b/docs/test/general/package-frame.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>test.general</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">

http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/2d586b68/docs/test/general/package-summary.html
----------------------------------------------------------------------
diff --git a/docs/test/general/package-summary.html b/docs/test/general/package-summary.html
index 47d0fd0..0d0308e 100644
--- a/docs/test/general/package-summary.html
+++ b/docs/test/general/package-summary.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 09:08:59 EDT 2016 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Sun Jul 24 11:37:28 EDT 2016 -->
 <title>test.general</title>
 <meta name="date" content="2016-07-24">
 <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">