<@U2W6BJ91R> do you know guava? It looks like ` @...
# getting-started
f
@okkero do you know guava? It looks like
Copy code
@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);

    }