(Collection<T> c)
| 193 | } |
| 194 | |
| 195 | public static <T> Enumeration<T> enumeration(Collection<T> c) { |
| 196 | return new IteratorEnumeration<T> (c.iterator()); |
| 197 | } |
| 198 | |
| 199 | public static <T> Comparator<T> reverseOrder(Comparator<T> cmp) { |
| 200 | return new ReverseComparator<T>(cmp); |
no test coverage detected