git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1199735 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-11-09 13:11:07 +00:00
parent 9690bfde6a
commit 7b3e823ede
1 changed files with 4 additions and 3 deletions

View File

@ -997,19 +997,20 @@ public CompareToBuilder append(boolean[] lhs, boolean[] rhs) {
* side. * side.
* *
* @return final comparison result * @return final comparison result
* @see #build()
*/ */
public int toComparison() { public int toComparison() {
return comparison; return comparison;
} }
/** /**
* Returns a negative integer, a positive integer, or zero as * Returns a negative Integer, a positive Integer, or zero as
* the <code>builder</code> has judged the "left-hand" side * the <code>builder</code> has judged the "left-hand" side
* as less than, greater than, or equal to the "right-hand" * as less than, greater than, or equal to the "right-hand"
* side. * side.
* *
* @return final comparison result * @return final comparison result as an Integer
* * @see #toComparison()
* @since 3.0 * @since 3.0
*/ */
public Integer build() { public Integer build() {