Here's the Guerilla's guide to equals() and hashCode(): 1. Avoid using them. The design, which favours inheritance over composition, is broken. By extension, so is the collections framework in the standard library. Don't use that either. 2. Make your objects immutable and seal your classes (everything either abstract or final). Be careful out there. [1]: http://projects.workingmouse.com/public/functionaljava/artifacts/2.13/javadoc/fj/pre/Equal.html [2]: http://projects.workingmouse.com/public/functionaljava/artifacts/2.13/javadoc/fj/pre/Hash.html