class Fruit implements Comparable { public int compareTo(Fruit other) { if (this instanceof Apple) if (other instanceof Orange) return -1; else return 0; else if (other instanceof Orange) return 0; else return 1; } }