Removed Methods |
(E extends T ) max(E, E)
|
Returns the greater of the two values according to this ordering. |
(E extends T ) max(E, E, E, E[])
|
Returns the greatest of the specified values according to this ordering. |
(E extends T ) min(E, E)
|
Returns the lesser of the two values according to this ordering. |
(E extends T ) min(E, E, E, E[])
|
Returns the least of the specified values according to this ordering. |
Added Methods |
(E extends T ) max(E, extends, T, E, extends, T)
|
Returns the greater of the two values according to this ordering. |
(E extends T ) max(E, extends, T, E, extends, T, E, extends, T, E[])
|
Returns the greatest of the specified values according to this ordering. |
(E extends T ) min(E, extends, T, E, extends, T)
|
Returns the lesser of the two values according to this ordering. |
(E extends T ) min(E, extends, T, E, extends, T, E, extends, T, E[])
|
Returns the least of the specified values according to this ordering. |
Changed Methods |
int binarySearch(List<?, extends, T>, T, extends, Object)
|
Change in signature from (List<? extends T>, T ) to (List<? extends T>, T extends Object ).
|
Use {@link Collections#binarySearch(List, Object, Comparator)} directly. |
int compare(T, extends, Object, T, extends, Object)
|
Change in signature from (T, T ) to (T extends Object, T extends Object ).
|
|