Changed Methods |
void reverse(List )
|
Documentation changed from old to new. |
Reverses the order of the elements in the specified list. |
Set singleton(Object )
|
Documentation changed from old to new. |
Returns an immutable set containing only the specified object. |
int binarySearch(List, Object, Comparator)
|
Documentation changed from old to new. |
Searches the specified list for the specified object using the binary search algorithm. |
Object max(Collection, Comparator)
|
Documentation changed from old to new. |
Returns the maximum element of the given collection according to the order induced by the specified comparator. |
Object min(Collection, Comparator)
|
Documentation changed from old to new. |
Returns the minimum element of the given collection according to the order induced by the specified comparator. |
void shuffle(List, Random)
|
Documentation changed from old to new. |
Randomly permute the specified list using the specified source of randomness. |
void sort(List, Comparator)
|
Documentation changed from old to new. |
Sorts the specified list according to the order induced by the specified comparator. |