}
if (!(obj instanceof ContactInfo)) {
return false;
}
final ContactInfo other = (ContactInfo) obj;
if (!(compare(getId(), other.getId())))
return false;
if (!(compare(getAddress(), other.getAddress())))
return false;
if (!(compare(getAddressCity(), other.getAddressCity())))
return false;
if (!(compare(getAddressCountry(), other.getAddressCountry())))
return false;
if (!(compare(getAddressPostalCode(), other.getAddressPostalCode())))
return false;
if (!(compare(getAddressState(), other.getAddressState())))
return false;
if (!(compare(getAddressType(), other.getAddressType())))
return false;
if (!(compare(getContactEmail(), other.getContactEmail())))
return false;
if (!(compare(getContactFacsimile(), other.getContactFacsimile())))
return false;
if (!(compare(getContactOrganization(), other.getContactOrganization())))
return false;
if (!(compare(getContactPerson(), other.getContactPerson())))
return false;
if (!(compare(getContactPosition(), other.getContactPosition())))
return false;
if (!(compare(getContactVoice(), other.getContactVoice())))
return false;
if (!(compare(getOnlineResource(), other.getOnlineResource())))
return false;
return true;
}