Suppose you write a static function in Java to sort an array, much like Arrays.sort(). The problem with Arrays.sort() is that it receives an array of Object, and throws a ClassCastException if its elements don't implement Comparable.
So you want your function to receive as an argument an array of a subtype of Comparable. Something like that could work:
static
<T extends Comparable>
void sort(T[] array);
The problem with that signature is that you can still pass an array of Comparables with Integers and Strings for instance, which would cause a Runtime exception.
So, how can you create a function that will receive only an array whose elements implement Comparable and have all the same type (eg. Integer, String, etc?)