* The finding statistics object. *
*/ private FindingStatistics findingStatistics; /** ** The finding statistics object. *
* * @param findingStatistics * The finding statistics object. */ public void setFindingStatistics(FindingStatistics findingStatistics) { this.findingStatistics = findingStatistics; } /** ** The finding statistics object. *
* * @return The finding statistics object. */ public FindingStatistics getFindingStatistics() { return this.findingStatistics; } /** ** The finding statistics object. *
* * @param findingStatistics * The finding statistics object. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFindingsStatisticsResult withFindingStatistics(FindingStatistics findingStatistics) { setFindingStatistics(findingStatistics); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getFindingStatistics() != null) sb.append("FindingStatistics: ").append(getFindingStatistics()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetFindingsStatisticsResult == false) return false; GetFindingsStatisticsResult other = (GetFindingsStatisticsResult) obj; if (other.getFindingStatistics() == null ^ this.getFindingStatistics() == null) return false; if (other.getFindingStatistics() != null && other.getFindingStatistics().equals(this.getFindingStatistics()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFindingStatistics() == null) ? 0 : getFindingStatistics().hashCode()); return hashCode; } @Override public GetFindingsStatisticsResult clone() { try { return (GetFindingsStatisticsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }