You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@commons.apache.org by ch...@apache.org on 2018/09/22 23:12:34 UTC

svn commit: r1035574 [3/47] - in /websites/production/commons/content/proper/commons-lang: ./ apidocs/ apidocs/org/apache/commons/lang3/ apidocs/org/apache/commons/lang3/arch/ apidocs/org/apache/commons/lang3/arch/class-use/ apidocs/org/apache/commons/...

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ObjectUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ObjectUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ObjectUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>ObjectUtils (Apache Commons Lang 3.8 API)</title>
+<title>ObjectUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,13 +12,13 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ObjectUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="ObjectUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {
     }
 //-->
-var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":41,"i19":9,"i20":41,"i21":41,"i22":9,"i23":9,"i24":41,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":41,"i34":41};
+var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":41,"i19":9,"i20":41,"i21":41,"i22":9,"i23":9,"i24":41,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":9,"i34":9,"i35":41,"i36":41};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 <li class="blockList">
 <hr>
 <br>
-<pre>public class <a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.47">ObjectUtils</a>
+<pre>public class <a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.48">ObjectUtils</a>
 extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
 <div class="block"><p>Operations on <code>Object</code>.</p>
 
@@ -392,37 +392,49 @@ extends <a href="https://docs.oracle.com
 </td>
 </tr>
 <tr id="i27" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#isEmpty-java.lang.Object-">isEmpty</a></span>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</code>
+<div class="block">Checks if an Object is empty or null.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#isNotEmpty-java.lang.Object-">isNotEmpty</a></span>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</code>
+<div class="block">Checks if an Object is not empty and not null.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
 <td class="colFirst"><code>static &lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;<br>T</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#max-T...-">max</a></span>(T...&nbsp;values)</code>
 <div class="block">Null safe comparison of Comparables.</div>
 </td>
 </tr>
-<tr id="i28" class="altColor">
+<tr id="i30" class="altColor">
 <td class="colFirst"><code>static &lt;T&gt;&nbsp;T</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#median-java.util.Comparator-T...-">median</a></span>(<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a>&lt;T&gt;&nbsp;comparator,
       T...&nbsp;items)</code>
 <div class="block">Find the "best guess" middle value among comparables.</div>
 </td>
 </tr>
-<tr id="i29" class="rowColor">
+<tr id="i31" class="rowColor">
 <td class="colFirst"><code>static &lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;<br>T</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#median-T...-">median</a></span>(T...&nbsp;items)</code>
 <div class="block">Find the "best guess" middle value among comparables.</div>
 </td>
 </tr>
-<tr id="i30" class="altColor">
+<tr id="i32" class="altColor">
 <td class="colFirst"><code>static &lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;<br>T</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#min-T...-">min</a></span>(T...&nbsp;values)</code>
 <div class="block">Null safe comparison of Comparables.</div>
 </td>
 </tr>
-<tr id="i31" class="rowColor">
+<tr id="i33" class="rowColor">
 <td class="colFirst"><code>static &lt;T&gt;&nbsp;T</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#mode-T...-">mode</a></span>(T...&nbsp;items)</code>
 <div class="block">Find the most frequently occurring item.</div>
 </td>
 </tr>
-<tr id="i32" class="altColor">
+<tr id="i34" class="altColor">
 <td class="colFirst"><code>static boolean</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#notEqual-java.lang.Object-java.lang.Object-">notEqual</a></span>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object1,
         <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object2)</code>
@@ -430,7 +442,7 @@ extends <a href="https://docs.oracle.com
  objects may be <code>null</code>.</div>
 </td>
 </tr>
-<tr id="i33" class="rowColor">
+<tr id="i35" class="rowColor">
 <td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#toString-java.lang.Object-">toString</a></span>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj)</code>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
@@ -440,7 +452,7 @@ extends <a href="https://docs.oracle.com
 </div>
 </td>
 </tr>
-<tr id="i34" class="altColor">
+<tr id="i36" class="altColor">
 <td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/commons/lang3/ObjectUtils.html#toString-java.lang.Object-java.lang.String-">toString</a></span>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj,
         <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;nullStr)</code>
@@ -478,7 +490,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockListLast">
 <li class="blockList">
 <h4>NULL</h4>
-<pre>public static final&nbsp;<a href="../../../../org/apache/commons/lang3/ObjectUtils.Null.html" title="class in org.apache.commons.lang3">ObjectUtils.Null</a> <a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.66">NULL</a></pre>
+<pre>public static final&nbsp;<a href="../../../../org/apache/commons/lang3/ObjectUtils.Null.html" title="class in org.apache.commons.lang3">ObjectUtils.Null</a> <a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.67">NULL</a></pre>
 <div class="block"><p>Singleton used as a <code>null</code> placeholder where
  <code>null</code> has another meaning.</p>
 
@@ -508,7 +520,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockListLast">
 <li class="blockList">
 <h4>ObjectUtils</h4>
-<pre>public&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.76">ObjectUtils</a>()</pre>
+<pre>public&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.77">ObjectUtils</a>()</pre>
 <div class="block"><p><code>ObjectUtils</code> instances should NOT be constructed in
  standard programming. Instead, the static methods on the class should
  be used, such as <code>ObjectUtils.defaultIfNull("a","b");</code>.</p>
@@ -525,6 +537,78 @@ extends <a href="https://docs.oracle.com
 <!--   -->
 </a>
 <h3>Method Detail</h3>
+<a name="isEmpty-java.lang.Object-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isEmpty</h4>
+<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.108">isEmpty</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
+<div class="block"><p>Checks if an Object is empty or null.</p>
+
+ The following types are supported:
+ <ul>
+ <li><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang"><code>CharSequence</code></a>: Considered empty if its length is zero.</li>
+ <li><code>Array</code>: Considered empty if its length is zero.</li>
+ <li><a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util"><code>Collection</code></a>: Considered empty if it has zero elements.</li>
+ <li><a href="https://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util"><code>Map</code></a>: Considered empty if it has zero key-value mappings.</li>
+ </ul>
+
+ <pre>
+ ObjectUtils.isEmpty(null)             = true
+ ObjectUtils.isEmpty("")               = true
+ ObjectUtils.isEmpty("ab")             = false
+ ObjectUtils.isEmpty(new int[]{})      = true
+ ObjectUtils.isEmpty(new int[]{1,2,3}) = false
+ ObjectUtils.isEmpty(1234)             = false
+ </pre></div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>object</code> - the <code>Object</code> to test, may be <code>null</code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>true</code> if the object has a supported type and is empty or null,
+ <code>false</code> otherwise</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>3.9</dd>
+</dl>
+</li>
+</ul>
+<a name="isNotEmpty-java.lang.Object-">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNotEmpty</h4>
+<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.152">isNotEmpty</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
+<div class="block"><p>Checks if an Object is not empty and not null.</p>
+
+ The following types are supported:
+ <ul>
+ <li><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang"><code>CharSequence</code></a>: Considered empty if its length is zero.</li>
+ <li><code>Array</code>: Considered empty if its length is zero.</li>
+ <li><a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util"><code>Collection</code></a>: Considered empty if it has zero elements.</li>
+ <li><a href="https://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util"><code>Map</code></a>: Considered empty if it has zero key-value mappings.</li>
+ </ul>
+
+ <pre>
+ ObjectUtils.isNotEmpty(null)             = false
+ ObjectUtils.isNotEmpty("")               = false
+ ObjectUtils.isNotEmpty("ab")             = true
+ ObjectUtils.isNotEmpty(new int[]{})      = false
+ ObjectUtils.isNotEmpty(new int[]{1,2,3}) = true
+ ObjectUtils.isNotEmpty(1234)             = true
+ </pre></div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>object</code> - the <code>Object</code> to test, may be <code>null</code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>true</code> if the object has an unsupported type or is not empty
+ and not null, <code>false</code> otherwise</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>3.9</dd>
+</dl>
+</li>
+</ul>
 <a name="defaultIfNull-java.lang.Object-java.lang.Object-">
 <!--   -->
 </a><a name="defaultIfNull-T-T-">
@@ -533,7 +617,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockList">
 <li class="blockList">
 <h4>defaultIfNull</h4>
-<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.98">defaultIfNull</a>(T&nbsp;object,
+<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.174">defaultIfNull</a>(T&nbsp;object,
                                   T&nbsp;defaultValue)</pre>
 <div class="block"><p>Returns a default value if the object passed is <code>null</code>.</p>
 
@@ -564,7 +648,7 @@ extends <a href="https://docs.oracle.com
 <li class="blockList">
 <h4>firstNonNull</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/SafeVarargs.html?is-external=true" title="class or interface in java.lang">@SafeVarargs</a>
-public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.125">firstNonNull</a>(T...&nbsp;values)</pre>
+public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.201">firstNonNull</a>(T...&nbsp;values)</pre>
 <div class="block"><p>Returns the first value in the array which is not <code>null</code>.
  If all the values are <code>null</code> or the array is <code>null</code>
  or empty then <code>null</code> is returned.</p>
@@ -598,7 +682,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>anyNotNull</h4>
-<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.159">anyNotNull</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</pre>
+<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.235">anyNotNull</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</pre>
 <div class="block">Checks if any value in the given array is not <code>null</code>.
 
  <p>
@@ -632,7 +716,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>allNotNull</h4>
-<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.188">allNotNull</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</pre>
+<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.264">allNotNull</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</pre>
 <div class="block">Checks if all values in the array are not <code>nulls</code>.
 
  <p>
@@ -669,7 +753,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <li class="blockList">
 <h4>equals</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
-public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.226">equals</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object1,
+public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.302">equals</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object1,
                                          <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object2)</pre>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">this method has been replaced by <code>java.util.Objects.equals(Object, Object)</code> in Java 7 and will
  be removed from future releases.</span></div>
@@ -701,7 +785,7 @@ public static&nbsp;boolean&nbsp;<a href=
 <ul class="blockList">
 <li class="blockList">
 <h4>notEqual</h4>
-<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.255">notEqual</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object1,
+<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.331">notEqual</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object1,
                                <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object2)</pre>
 <div class="block"><p>Compares two objects for inequality, where either one or both
  objects may be <code>null</code>.</p>
@@ -732,7 +816,7 @@ public static&nbsp;boolean&nbsp;<a href=
 <li class="blockList">
 <h4>hashCode</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
-public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.275">hashCode</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj)</pre>
+public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.351">hashCode</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj)</pre>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">this method has been replaced by <code>java.util.Objects.hashCode(Object)</code> in Java 7 and will be
  removed in future releases</span></div>
 <div class="block"><p>Gets the hash code of an object returning zero when the
@@ -759,7 +843,7 @@ public static&nbsp;int&nbsp;<a href="../
 <li class="blockList">
 <h4>hashCodeMulti</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
-public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.303">hashCodeMulti</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;objects)</pre>
+public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.379">hashCodeMulti</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;objects)</pre>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">this method has been replaced by <code>java.util.Objects.hash(Object...)</code> in Java 7 and will be
  removed in future releases.</span></div>
 <div class="block"><p>Gets the hash code for multiple objects.</p>
@@ -792,7 +876,7 @@ public static&nbsp;int&nbsp;<a href="../
 <ul class="blockList">
 <li class="blockList">
 <h4>identityToString</h4>
-<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.332">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
+<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.408">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
 <div class="block"><p>Gets the toString that would be produced by <code>Object</code>
  if a class did not override toString itself. <code>null</code>
  will return <code>null</code>.</p>
@@ -818,7 +902,7 @@ public static&nbsp;int&nbsp;<a href="../
 <ul class="blockList">
 <li class="blockList">
 <h4>identityToString</h4>
-<pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.363">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Appendable.html?is-external=true" title="class or interface in java.lang">Appendable</a>&nbsp;appendable,
+<pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.439">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Appendable.html?is-external=true" title="class or interface in java.lang">Appendable</a>&nbsp;appendable,
                                     <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)
                              throws <a href="https://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block"><p>Appends the toString that would be produced by <code>Object</code>
@@ -848,7 +932,7 @@ public static&nbsp;int&nbsp;<a href="../
 <li class="blockList">
 <h4>identityToString</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
-public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.388">identityToString</a>(<a href="../../../../org/apache/commons/lang3/text/StrBuilder.html" title="class in org.apache.commons.lang3.text">StrBuilder</a>&nbsp;builder,
+public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.464">identityToString</a>(<a href="../../../../org/apache/commons/lang3/text/StrBuilder.html" title="class in org.apache.commons.lang3.text">StrBuilder</a>&nbsp;builder,
                                                 <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">as of 3.6, because StrBuilder was moved to commons-text,
   use one of the other <code>identityToString</code> methods instead</span></div>
@@ -876,7 +960,7 @@ public static&nbsp;void&nbsp;<a href="..
 <ul class="blockList">
 <li class="blockList">
 <h4>identityToString</h4>
-<pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.413">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/StringBuffer.html?is-external=true" title="class or interface in java.lang">StringBuffer</a>&nbsp;buffer,
+<pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.489">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/StringBuffer.html?is-external=true" title="class or interface in java.lang">StringBuffer</a>&nbsp;buffer,
                                     <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
 <div class="block"><p>Appends the toString that would be produced by <code>Object</code>
  if a class did not override toString itself. <code>null</code>
@@ -902,7 +986,7 @@ public static&nbsp;void&nbsp;<a href="..
 <ul class="blockList">
 <li class="blockList">
 <h4>identityToString</h4>
-<pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.438">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/StringBuilder.html?is-external=true" title="class or interface in java.lang">StringBuilder</a>&nbsp;builder,
+<pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.514">identityToString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/StringBuilder.html?is-external=true" title="class or interface in java.lang">StringBuilder</a>&nbsp;builder,
                                     <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;object)</pre>
 <div class="block"><p>Appends the toString that would be produced by <code>Object</code>
  if a class did not override toString itself. <code>null</code>
@@ -929,7 +1013,7 @@ public static&nbsp;void&nbsp;<a href="..
 <li class="blockList">
 <h4>toString</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
-public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.471">toString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj)</pre>
+public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.547">toString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj)</pre>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">this method has been replaced by <code>java.util.Objects.toString(Object)</code> in Java 7 and will be
  removed in future releases. Note however that said method will return "null" for null references, while this
  method returns an empty String. To preserve behavior use <code>java.util.Objects.toString(myObject, "")</code></span></div>
@@ -962,7 +1046,7 @@ public static&nbsp;<a href="https://docs
 <li class="blockList">
 <h4>toString</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang">@Deprecated</a>
-public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.497">toString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj,
+public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.573">toString</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;obj,
                                           <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;nullStr)</pre>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">this method has been replaced by <code>java.util.Objects.toString(Object, String)</code> in Java 7 and
  will be removed in future releases.</span></div>
@@ -999,7 +1083,7 @@ public static&nbsp;<a href="https://docs
 <li class="blockList">
 <h4>min</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/SafeVarargs.html?is-external=true" title="class or interface in java.lang">@SafeVarargs</a>
-public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.517">min</a>(T...&nbsp;values)</pre>
+public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.593">min</a>(T...&nbsp;values)</pre>
 <div class="block"><p>Null safe comparison of Comparables.</p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -1025,7 +1109,7 @@ public static&nbsp;&lt;T extends <a href
 <li class="blockList">
 <h4>max</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/SafeVarargs.html?is-external=true" title="class or interface in java.lang">@SafeVarargs</a>
-public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.543">max</a>(T...&nbsp;values)</pre>
+public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.619">max</a>(T...&nbsp;values)</pre>
 <div class="block"><p>Null safe comparison of Comparables.</p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -1050,7 +1134,7 @@ public static&nbsp;&lt;T extends <a href
 <ul class="blockList">
 <li class="blockList">
 <h4>compare</h4>
-<pre>public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.565">compare</a>(T&nbsp;c1,
+<pre>public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.641">compare</a>(T&nbsp;c1,
                                                             T&nbsp;c2)</pre>
 <div class="block"><p>Null safe comparison of Comparables.
  <code>null</code> is assumed to be less than a non-<code>null</code> value.</p></div>
@@ -1074,7 +1158,7 @@ public static&nbsp;&lt;T extends <a href
 <ul class="blockList">
 <li class="blockList">
 <h4>compare</h4>
-<pre>public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.582">compare</a>(T&nbsp;c1,
+<pre>public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.658">compare</a>(T&nbsp;c1,
                                                             T&nbsp;c2,
                                                             boolean&nbsp;nullGreater)</pre>
 <div class="block"><p>Null safe comparison of Comparables.</p></div>
@@ -1104,7 +1188,7 @@ public static&nbsp;&lt;T extends <a href
 <li class="blockList">
 <h4>median</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/SafeVarargs.html?is-external=true" title="class or interface in java.lang">@SafeVarargs</a>
-public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.604">median</a>(T...&nbsp;items)</pre>
+public static&nbsp;&lt;T extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.680">median</a>(T...&nbsp;items)</pre>
 <div class="block">Find the "best guess" middle value among comparables. If there is an even
  number of total values, the lower of the two middle values will be returned.</div>
 <dl>
@@ -1131,7 +1215,7 @@ public static&nbsp;&lt;T extends <a href
 <li class="blockList">
 <h4>median</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/SafeVarargs.html?is-external=true" title="class or interface in java.lang">@SafeVarargs</a>
-public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.626">median</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a>&lt;T&gt;&nbsp;comparator,
+public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.702">median</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a>&lt;T&gt;&nbsp;comparator,
                                         T...&nbsp;items)</pre>
 <div class="block">Find the "best guess" middle value among comparables. If there is an even
  number of total values, the lower of the two middle values will be returned.</div>
@@ -1160,7 +1244,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <li class="blockList">
 <h4>mode</h4>
 <pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/SafeVarargs.html?is-external=true" title="class or interface in java.lang">@SafeVarargs</a>
-public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.649">mode</a>(T...&nbsp;items)</pre>
+public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.725">mode</a>(T...&nbsp;items)</pre>
 <div class="block">Find the most frequently occurring item.</div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -1182,7 +1266,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>clone</h4>
-<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.687">clone</a>(T&nbsp;obj)</pre>
+<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.763">clone</a>(T&nbsp;obj)</pre>
 <div class="block"><p>Clone an object.</p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -1206,7 +1290,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>cloneIfPossible</h4>
-<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.741">cloneIfPossible</a>(T&nbsp;obj)</pre>
+<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.817">cloneIfPossible</a>(T&nbsp;obj)</pre>
 <div class="block"><p>Clone an object if possible.</p>
 
  <p>This method is similar to <a href="../../../../org/apache/commons/lang3/ObjectUtils.html#clone-T-"><code>clone(Object)</code></a>, but will return the provided
@@ -1235,7 +1319,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.825">CONST</a>(boolean&nbsp;v)</pre>
+<pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.901">CONST</a>(boolean&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1263,7 +1347,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;byte&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.846">CONST</a>(byte&nbsp;v)</pre>
+<pre>public static&nbsp;byte&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.922">CONST</a>(byte&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1291,7 +1375,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST_BYTE</h4>
-<pre>public static&nbsp;byte&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.870">CONST_BYTE</a>(int&nbsp;v)</pre>
+<pre>public static&nbsp;byte&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.946">CONST_BYTE</a>(int&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1323,7 +1407,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;char&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.894">CONST</a>(char&nbsp;v)</pre>
+<pre>public static&nbsp;char&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.970">CONST</a>(char&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1351,7 +1435,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;short&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.915">CONST</a>(short&nbsp;v)</pre>
+<pre>public static&nbsp;short&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.991">CONST</a>(short&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1379,7 +1463,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST_SHORT</h4>
-<pre>public static&nbsp;short&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.939">CONST_SHORT</a>(int&nbsp;v)</pre>
+<pre>public static&nbsp;short&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1015">CONST_SHORT</a>(int&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1411,7 +1495,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.964">CONST</a>(int&nbsp;v)</pre>
+<pre>public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1040">CONST</a>(int&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1439,7 +1523,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;long&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.985">CONST</a>(long&nbsp;v)</pre>
+<pre>public static&nbsp;long&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1061">CONST</a>(long&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1467,7 +1551,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;float&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1006">CONST</a>(float&nbsp;v)</pre>
+<pre>public static&nbsp;float&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1082">CONST</a>(float&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1495,7 +1579,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockList">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;double&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1027">CONST</a>(double&nbsp;v)</pre>
+<pre>public static&nbsp;double&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1103">CONST</a>(double&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,
@@ -1525,7 +1609,7 @@ public static&nbsp;&lt;T&gt;&nbsp;T&nbsp
 <ul class="blockListLast">
 <li class="blockList">
 <h4>CONST</h4>
-<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1049">CONST</a>(T&nbsp;v)</pre>
+<pre>public static&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ObjectUtils.html#line.1125">CONST</a>(T&nbsp;v)</pre>
 <div class="block">This method returns the provided value unchanged.
  This can prevent javac from inlining a constant
  field, e.g.,

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RandomStringUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RandomStringUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RandomStringUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>RandomStringUtils (Apache Commons Lang 3.8 API)</title>
+<title>RandomStringUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RandomStringUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="RandomStringUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RandomUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RandomUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RandomUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>RandomUtils (Apache Commons Lang 3.8 API)</title>
+<title>RandomUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RandomUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="RandomUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/Range.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/Range.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/Range.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Range (Apache Commons Lang 3.8 API)</title>
+<title>Range (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Range (Apache Commons Lang 3.8 API)";
+            parent.document.title="Range (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RegExUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RegExUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/RegExUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>RegExUtils (Apache Commons Lang 3.8 API)</title>
+<title>RegExUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RegExUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="RegExUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SerializationException.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SerializationException.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SerializationException.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>SerializationException (Apache Commons Lang 3.8 API)</title>
+<title>SerializationException (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializationException (Apache Commons Lang 3.8 API)";
+            parent.document.title="SerializationException (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SerializationUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SerializationUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SerializationUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>SerializationUtils (Apache Commons Lang 3.8 API)</title>
+<title>SerializationUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializationUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="SerializationUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/StringEscapeUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/StringEscapeUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/StringEscapeUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>StringEscapeUtils (Apache Commons Lang 3.8 API)</title>
+<title>StringEscapeUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StringEscapeUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="StringEscapeUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>StringUtils (Apache Commons Lang 3.8 API)</title>
+<title>StringUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StringUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="StringUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SystemUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SystemUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/SystemUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>SystemUtils (Apache Commons Lang 3.8 API)</title>
+<title>SystemUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SystemUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="SystemUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.NamePredicate.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.NamePredicate.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.NamePredicate.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>ThreadUtils.NamePredicate (Apache Commons Lang 3.8 API)</title>
+<title>ThreadUtils.NamePredicate (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThreadUtils.NamePredicate (Apache Commons Lang 3.8 API)";
+            parent.document.title="ThreadUtils.NamePredicate (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>public static class <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.294">ThreadUtils.NamePredicate</a>
+<pre>public static class <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.296">ThreadUtils.NamePredicate</a>
 extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
 implements <a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadPredicate</a>, <a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadGroupPredicate</a></pre>
 <div class="block">A predicate implementation which matches a thread or threadgroup name.</div>
@@ -198,7 +198,7 @@ implements <a href="../../../../org/apac
 <ul class="blockListLast">
 <li class="blockList">
 <h4>NamePredicate</h4>
-<pre>public&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.NamePredicate.html#line.304">NamePredicate</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
+<pre>public&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.NamePredicate.html#line.306">NamePredicate</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
 <div class="block">Predicate constructor</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -222,7 +222,7 @@ implements <a href="../../../../org/apac
 <ul class="blockList">
 <li class="blockList">
 <h4>test</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.NamePredicate.html#line.311">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;threadGroup)</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.NamePredicate.html#line.313">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;threadGroup)</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html#test-java.lang.ThreadGroup-">ThreadUtils.ThreadGroupPredicate</a></code></span></div>
 <div class="block">Evaluates this predicate on the given threadgroup.</div>
 <dl>
@@ -241,7 +241,7 @@ implements <a href="../../../../org/apac
 <ul class="blockListLast">
 <li class="blockList">
 <h4>test</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.NamePredicate.html#line.316">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&nbsp;thread)</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.NamePredicate.html#line.318">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&nbsp;thread)</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html#test-java.lang.Thread-">ThreadUtils.ThreadPredicate</a></code></span></div>
 <div class="block">Evaluates this predicate on the given thread.</div>
 <dl>

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>ThreadUtils.ThreadGroupPredicate (Apache Commons Lang 3.8 API)</title>
+<title>ThreadUtils.ThreadGroupPredicate (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThreadUtils.ThreadGroupPredicate (Apache Commons Lang 3.8 API)";
+            parent.document.title="ThreadUtils.ThreadGroupPredicate (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {
@@ -107,9 +107,14 @@ var activeTableTab = "activeTableTab";
 <dt>Enclosing class:</dt>
 <dd><a href="../../../../org/apache/commons/lang3/ThreadUtils.html" title="class in org.apache.commons.lang3">ThreadUtils</a></dd>
 </dl>
+<dl>
+<dt>Functional Interface:</dt>
+<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
+</dl>
 <hr>
 <br>
-<pre>public static interface <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.257">ThreadUtils.ThreadGroupPredicate</a></pre>
+<pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
+public static interface <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.259">ThreadUtils.ThreadGroupPredicate</a></pre>
 <div class="block">A predicate for selecting threadgroups.</div>
 </li>
 </ul>
@@ -156,7 +161,7 @@ var activeTableTab = "activeTableTab";
 <ul class="blockListLast">
 <li class="blockList">
 <h4>test</h4>
-<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html#line.264">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;threadGroup)</pre>
+<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html#line.266">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;threadGroup)</pre>
 <div class="block">Evaluates this predicate on the given threadgroup.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>ThreadUtils.ThreadIdPredicate (Apache Commons Lang 3.8 API)</title>
+<title>ThreadUtils.ThreadIdPredicate (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThreadUtils.ThreadIdPredicate (Apache Commons Lang 3.8 API)";
+            parent.document.title="ThreadUtils.ThreadIdPredicate (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>public static class <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.324">ThreadUtils.ThreadIdPredicate</a>
+<pre>public static class <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.326">ThreadUtils.ThreadIdPredicate</a>
 extends <a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
 implements <a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadPredicate</a></pre>
 <div class="block">A predicate implementation which matches a thread id.</div>
@@ -192,7 +192,7 @@ implements <a href="../../../../org/apac
 <ul class="blockListLast">
 <li class="blockList">
 <h4>ThreadIdPredicate</h4>
-<pre>public&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html#line.334">ThreadIdPredicate</a>(long&nbsp;threadId)</pre>
+<pre>public&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html#line.336">ThreadIdPredicate</a>(long&nbsp;threadId)</pre>
 <div class="block">Predicate constructor</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -216,7 +216,7 @@ implements <a href="../../../../org/apac
 <ul class="blockListLast">
 <li class="blockList">
 <h4>test</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html#line.343">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&nbsp;thread)</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadIdPredicate.html#line.345">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&nbsp;thread)</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html#test-java.lang.Thread-">ThreadUtils.ThreadPredicate</a></code></span></div>
 <div class="block">Evaluates this predicate on the given thread.</div>
 <dl>

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>ThreadUtils.ThreadPredicate (Apache Commons Lang 3.8 API)</title>
+<title>ThreadUtils.ThreadPredicate (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThreadUtils.ThreadPredicate (Apache Commons Lang 3.8 API)";
+            parent.document.title="ThreadUtils.ThreadPredicate (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {
@@ -107,9 +107,14 @@ var activeTableTab = "activeTableTab";
 <dt>Enclosing class:</dt>
 <dd><a href="../../../../org/apache/commons/lang3/ThreadUtils.html" title="class in org.apache.commons.lang3">ThreadUtils</a></dd>
 </dl>
+<dl>
+<dt>Functional Interface:</dt>
+<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
+</dl>
 <hr>
 <br>
-<pre>public static interface <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.243">ThreadUtils.ThreadPredicate</a></pre>
+<pre><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
+public static interface <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.244">ThreadUtils.ThreadPredicate</a></pre>
 <div class="block">A predicate for selecting threads.</div>
 </li>
 </ul>
@@ -156,7 +161,7 @@ var activeTableTab = "activeTableTab";
 <ul class="blockListLast">
 <li class="blockList">
 <h4>test</h4>
-<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html#line.250">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&nbsp;thread)</pre>
+<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html#line.251">test</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&nbsp;thread)</pre>
 <div class="block">Evaluates this predicate on the given thread.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/ThreadUtils.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>ThreadUtils (Apache Commons Lang 3.8 API)</title>
+<title>ThreadUtils (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThreadUtils (Apache Commons Lang 3.8 API)";
+            parent.document.title="ThreadUtils (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {
@@ -342,7 +342,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockListLast">
 <li class="blockList">
 <h4>ALWAYS_TRUE_PREDICATE</h4>
-<pre>public static final&nbsp;org.apache.commons.lang3.ThreadUtils.AlwaysTruePredicate <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.270">ALWAYS_TRUE_PREDICATE</a></pre>
+<pre>public static final&nbsp;org.apache.commons.lang3.ThreadUtils.AlwaysTruePredicate <a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.272">ALWAYS_TRUE_PREDICATE</a></pre>
 <div class="block">Predicate which always returns true.</div>
 </li>
 </ul>
@@ -596,7 +596,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockList">
 <li class="blockList">
 <h4>findThreads</h4>
-<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.360">findThreads</a>(<a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadPredicate</a>&nbsp;predicate)</pre>
+<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.362">findThreads</a>(<a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadPredicate</a>&nbsp;predicate)</pre>
 <div class="block">Select all active threads which match the given predicate.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -617,7 +617,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockList">
 <li class="blockList">
 <h4>findThreadGroups</h4>
-<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.375">findThreadGroups</a>(<a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadGroupPredicate</a>&nbsp;predicate)</pre>
+<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.377">findThreadGroups</a>(<a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadGroupPredicate</a>&nbsp;predicate)</pre>
 <div class="block">Select all active threadgroups which match the given predicate.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -638,7 +638,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockList">
 <li class="blockList">
 <h4>findThreads</h4>
-<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.390">findThreads</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;group,
+<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html?is-external=true" title="class or interface in java.lang">Thread</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.392">findThreads</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;group,
                                              boolean&nbsp;recurse,
                                              <a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadPredicate</a>&nbsp;predicate)</pre>
 <div class="block">Select all active threads which match the given predicate and which belongs to the given thread group (or one of its subgroups).</div>
@@ -662,7 +662,7 @@ extends <a href="https://docs.oracle.com
 <ul class="blockListLast">
 <li class="blockList">
 <h4>findThreadGroups</h4>
-<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.422">findThreadGroups</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;group,
+<pre>public static&nbsp;<a href="https://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/lang3/ThreadUtils.html#line.424">findThreadGroups</a>(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/ThreadGroup.html?is-external=true" title="class or interface in java.lang">ThreadGroup</a>&nbsp;group,
                                                        boolean&nbsp;recurse,
                                                        <a href="../../../../org/apache/commons/lang3/ThreadUtils.ThreadGroupPredicate.html" title="interface in org.apache.commons.lang3">ThreadUtils.ThreadGroupPredicate</a>&nbsp;predicate)</pre>
 <div class="block">Select all active threadgroups which match the given predicate and which is a subgroup of the given thread group (or one of its subgroups).</div>

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/Validate.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/Validate.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/Validate.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Validate (Apache Commons Lang 3.8 API)</title>
+<title>Validate (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Validate (Apache Commons Lang 3.8 API)";
+            parent.document.title="Validate (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.Arch.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.Arch.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.Arch.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Processor.Arch (Apache Commons Lang 3.8 API)</title>
+<title>Processor.Arch (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Processor.Arch (Apache Commons Lang 3.8 API)";
+            parent.document.title="Processor.Arch (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.Type.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.Type.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.Type.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Processor.Type (Apache Commons Lang 3.8 API)</title>
+<title>Processor.Type (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Processor.Type (Apache Commons Lang 3.8 API)";
+            parent.document.title="Processor.Type (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/Processor.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Processor (Apache Commons Lang 3.8 API)</title>
+<title>Processor (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Processor (Apache Commons Lang 3.8 API)";
+            parent.document.title="Processor (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.Arch.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.Arch.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.Arch.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Uses of Class org.apache.commons.lang3.arch.Processor.Arch (Apache Commons Lang 3.8 API)</title>
+<title>Uses of Class org.apache.commons.lang3.arch.Processor.Arch (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.commons.lang3.arch.Processor.Arch (Apache Commons Lang 3.8 API)";
+            parent.document.title="Uses of Class org.apache.commons.lang3.arch.Processor.Arch (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.Type.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.Type.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.Type.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Uses of Class org.apache.commons.lang3.arch.Processor.Type (Apache Commons Lang 3.8 API)</title>
+<title>Uses of Class org.apache.commons.lang3.arch.Processor.Type (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.commons.lang3.arch.Processor.Type (Apache Commons Lang 3.8 API)";
+            parent.document.title="Uses of Class org.apache.commons.lang3.arch.Processor.Type (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.html
==============================================================================
--- websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.html (original)
+++ websites/production/commons/content/proper/commons-lang/apidocs/org/apache/commons/lang3/arch/class-use/Processor.html Sat Sep 22 23:12:29 2018
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Uses of Class org.apache.commons.lang3.arch.Processor (Apache Commons Lang 3.8 API)</title>
+<title>Uses of Class org.apache.commons.lang3.arch.Processor (Apache Commons Lang 3.9-SNAPSHOT API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.commons.lang3.arch.Processor (Apache Commons Lang 3.8 API)";
+            parent.document.title="Uses of Class org.apache.commons.lang3.arch.Processor (Apache Commons Lang 3.9-SNAPSHOT API)";
         }
     }
     catch(err) {