frogger
12/19/2016, 3:17 PM@Override
public boolean equals(Object obj) {
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
final Address other = (Address) obj;
return Objects.equal(this.houseNumber, other.houseNumber)
&& Objects.equal(this.street, other.street)
&& Objects.equal(this.city, other.city)
&& Objects.equal(this.stateOrProvince, other.stateOrProvince)
&& Objects.equal(this.country, other.country);
}