/// <summary> /// Returns true if OrgApacheSlingI18nImplJcrResourceBundleProviderProperties instances are equal /// </summary> /// <param name="other">Instance of OrgApacheSlingI18nImplJcrResourceBundleProviderProperties to be compared</param> /// <returns>Boolean</returns> public bool Equals(OrgApacheSlingI18nImplJcrResourceBundleProviderProperties other) { if (other is null) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( LocaleDefault == other.LocaleDefault || LocaleDefault != null && LocaleDefault.Equals(other.LocaleDefault) ) && ( PreloadBundles == other.PreloadBundles || PreloadBundles != null && PreloadBundles.Equals(other.PreloadBundles) ) && ( InvalidationDelay == other.InvalidationDelay || InvalidationDelay != null && InvalidationDelay.Equals(other.InvalidationDelay) )); }
/// <summary> /// Gets the hash code /// </summary> /// <returns>Hash code</returns> public override int GetHashCode() { unchecked // Overflow is fine, just wrap { var hashCode = 41; // Suitable nullity checks etc, of course :) if (LocaleDefault != null) { hashCode = hashCode * 59 + LocaleDefault.GetHashCode(); } if (PreloadBundles != null) { hashCode = hashCode * 59 + PreloadBundles.GetHashCode(); } if (InvalidationDelay != null) { hashCode = hashCode * 59 + InvalidationDelay.GetHashCode(); } return(hashCode); } }