The phrase <? super T> is a wildcard and implies that ,class BinarySearchTree can take:
a. a type parameter (T) that extends Comparable
b. and also can take a subtype (S) whose parent extends Comparable
The construct <? super T> extends utility of class BinarySearchTree to
type(s) that implements Comparable and its subtypes.
Below code snippet demonstrates this:
// Below declaration of Helper class doesn't uses the wildcard super
class Helper<T extends Comparable<T>> {
// some helper methods
}
abstract class Animal implements Comparable<Animal> {
public int compareTo(final Animal o) {
// implementation ...
}
// other abstract methods
}
class Mammal extends Animal {
// implement abstract methods
}
With the above declaration the statement Helper<Animal> x = new Helper<Animal>() works fine.
But the statement: Helper<Mammal> x = new Helper<Mammal>() gives the compile error
type parameter Mammal is not within its bound
(the compiler version is javac 1.5.0_06)
When the declaration of the class Helper is changed to below form:
class Helper<T extends Comparable<? super T>> {
// some helper methods
}
then the statement Helper<Mammal> x = new Helper<Mammal>() doesn't give any compiler error.
Thus usage of wildcard maximizes the utility of the class.