The only rule you must take care of: **Whenever a.equals(b), then a.hashCode() must be same as b.hashCode().** Maintaining hashCode() and equals() manually can be a tedious job, but the [Apache Commons Lang](http://commons.apache.org/lang/) ([javadoc](http://commons.apache.org/lang/api-release/index.html)) library provides excellent helper classes [EqualsBuilder](http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/EqualsBuilder.html) and [HashCodeBuilder](http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/HashCodeBuilder.html) to help with this.