The Comparable
interface has a generic type parameter, which is used for self-referencing in subclasses (I don’t know any other use for it) :
public interface Comparable<E> { public int compareTo(E other); } public class ComparableInteger implements Comparable<ComparableInteger> { private int val; public void compareTo(ComparableInteger other) { return val > other ? 1 : (val == other ? 0 : -1); }
But what if you need to access methods of the interface on the generic type parameter? Then you can do a recursive declaration of the type parameter. Read More