Here's the Guerilla's guide to equals() and hashCode(): 1. Don't use them. The design of equals() and hashCode() is broken. Use instances of Equal<A> and Hash<A> instead (see here: [Equal][1], [Hash][2]). 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