Description
Currently ObjectUtils has min() and max() method with the following signatures:
public static <T extends Comparable<? super T>> T min(T c1, T c2) public static <T extends Comparable<? super T>> T max(T c1, T c2)
It would be useful to change these from taking just two parameters to any number using varags:
public static <T extends Comparable<? super T>> T min(T... values) public static <T extends Comparable<? super T>> T max(T... values)