Class java.util.Collections
| Changed Methods | ||
|---|---|---|
Set<T> synchronizedSet(Set<T>) |
Change in return type from Set<E> to Set<T>.Change in signature from Set<E> to Set<T>. |
|
SortedSet<T> synchronizedSortedSet(SortedSet<T>) |
Change in return type from SortedSet<E> to SortedSet<T>.Change in signature from SortedSet<E> to SortedSet<T>. |
|
Collection<T> unmodifiableCollection(Collection<? extends T>) |
Change in return type from Collection<E> to Collection<T>.Change in signature from ( Collection<? extends E>) to (Collection<? extends T>). |
|
List<T> unmodifiableList(List<? extends T>) |
Change in return type from List<E> to List<T>.Change in signature from ( List<? extends E>) to (List<? extends T>). |
|
Set<T> unmodifiableSet(Set<? extends T>) |
Change in return type from Set<E> to Set<T>.Change in signature from ( Set<? extends E>) to (Set<? extends T>). |
|
SortedSet<T> unmodifiableSortedSet(SortedSet<T>) |
Change in return type from SortedSet<E> to SortedSet<T>.Change in signature from SortedSet<E> to SortedSet<T>. |
|
