package Supporting; /** * Protocol for Comparable objects. * @author Mark Allen Weiss */ public interface Comparable { /** * Compare this object with rhs. * @param Rhs the second Comparable. * @return 0 if two objects are equal; * less than zero if this object is smaller; * greater than zero if this object is larger. */ int compares( Comparable rhs ); /** * Compare this object with rhs. * @param Rhs the second Comparable. * @return true if this object is smaller; * false otherwise. */ boolean lessThan( Comparable rhs ); }