Generated by
JDiff

Class java.util.Collections

Documentation changed from old to new.

Added Methods
List singletonList(Object) Returns an immutable list containing only the specified object.
Map singletonMap(Object, Object) Returns an immutable map mapping only the specified key to the specified value.
 

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.
 

Added Fields
Map EMPTY_MAP The empty map (immutable).