Add details to the ArraySorter Javadoc
This commit is contained in:
parent
eee98089ac
commit
d540452cc5
|
@ -56,6 +56,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action type="fix" dev="ggregory" due-to="Gary Gregory">Remove trailing whitespace in StopWatch exception messages.</action>
|
||||
<action issue="LANG-1754" type="fix" dev="ggregory" due-to="vhbcm">Use getAllSuperclassesAndInterfaces() in getMatchingMethod() #1289.</action>
|
||||
<action type="fix" dev="ggregory" due-to="Gary Gregory">Add details to the ArrayFill Javadoc.</action>
|
||||
<action type="fix" dev="ggregory" due-to="Gary Gregory">Add details to the ArraySorter Javadoc.</action>
|
||||
<!-- ADD -->
|
||||
<action type="add" dev="ggregory" due-to="Gary Gregory">Add Strings and refactor StringUtils.</action>
|
||||
<action issue="LANG-1747" type="add" dev="ggregory" due-to="Oliver B. Fischer, Gary Gregory">Add StopWatch.run([Failable]Runnable) and get([Failable]Supplier).</action>
|
||||
|
|
|
@ -28,9 +28,9 @@ import java.util.Comparator;
|
|||
public class ArraySorter {
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(byte[])
|
||||
*/
|
||||
|
@ -42,9 +42,9 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(char[])
|
||||
*/
|
||||
|
@ -56,9 +56,9 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(double[])
|
||||
*/
|
||||
|
@ -70,9 +70,9 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(float[])
|
||||
*/
|
||||
|
@ -84,9 +84,9 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(int[])
|
||||
*/
|
||||
|
@ -98,9 +98,9 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(long[])
|
||||
*/
|
||||
|
@ -112,9 +112,9 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(short[])
|
||||
*/
|
||||
|
@ -126,10 +126,10 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param <T> the array type.
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @return the given array.
|
||||
* @see Arrays#sort(Object[])
|
||||
*/
|
||||
|
@ -141,10 +141,10 @@ public class ArraySorter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sorts and returns the given array.
|
||||
* Sorts the given array into ascending order and returns it.
|
||||
*
|
||||
* @param <T> the array type.
|
||||
* @param array the array to sort.
|
||||
* @param array the array to sort (may be null).
|
||||
* @param comparator the comparator to determine the order of the array. A {@code null} value uses the elements'
|
||||
* {@link Comparable natural ordering}.
|
||||
* @return the given array.
|
||||
|
|
Loading…
Reference in New Issue