The Comparable Interface is a standard interface in Java that mandates that all classes implementing the Comparable interface must define a method called int compareTo(Object o)
that returns a positive int if the parameter o
passed in is less than the current instance, returns 0 if it is equal, and a negative int if it is greater.