Top "Comparable" questions

In Java, this interface is implemented by a class to indicate that it can be compared to another object and therefore ordered.

implementing compareTo() with generics and collection

i m working with collections and i cant figure this out... I want to override compareTO() method based on the "…

java sorting collections comparable generic-collections
Java HashSet is allowing dupes; problem with comparable?

I've got a class, "Accumulator", that implements the Comparable compareTo method, and I'm trying to put these objects into a …

java set comparable