public int hashCode()

in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/resources/Address.java [202:224]


  public int hashCode() {
    final int PRIME = 59;
    int result = 1;
    final Object $type = this.getType();
    result = result * PRIME + ($type == null ? 43 : $type.hashCode());
    final Object $display = this.getDisplay();
    result = result * PRIME + ($display == null ? 43 : $display.hashCode());
    final Object $primary = this.getPrimary();
    result = result * PRIME + ($primary == null ? 43 : $primary.hashCode());
    final Object $country = this.getCountry();
    result = result * PRIME + ($country == null ? 43 : $country.hashCode());
    final Object $formatted = this.getFormatted();
    result = result * PRIME + ($formatted == null ? 43 : $formatted.hashCode());
    final Object $locality = this.getLocality();
    result = result * PRIME + ($locality == null ? 43 : $locality.hashCode());
    final Object $postalCode = this.getPostalCode();
    result = result * PRIME + ($postalCode == null ? 43 : $postalCode.hashCode());
    final Object $region = this.getRegion();
    result = result * PRIME + ($region == null ? 43 : $region.hashCode());
    final Object $streetAddress = this.getStreetAddress();
    result = result * PRIME + ($streetAddress == null ? 43 : $streetAddress.hashCode());
    return result;
  }