* Contains information about the calculation execution status. *
*/ private CalculationStatus status; /** ** Contains information about the DPU execution time and progress. *
*/ private CalculationStatistics statistics; /** ** Contains information about the calculation execution status. *
* * @param status * Contains information about the calculation execution status. */ public void setStatus(CalculationStatus status) { this.status = status; } /** ** Contains information about the calculation execution status. *
* * @return Contains information about the calculation execution status. */ public CalculationStatus getStatus() { return this.status; } /** ** Contains information about the calculation execution status. *
* * @param status * Contains information about the calculation execution status. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCalculationExecutionStatusResult withStatus(CalculationStatus status) { setStatus(status); return this; } /** ** Contains information about the DPU execution time and progress. *
* * @param statistics * Contains information about the DPU execution time and progress. */ public void setStatistics(CalculationStatistics statistics) { this.statistics = statistics; } /** ** Contains information about the DPU execution time and progress. *
* * @return Contains information about the DPU execution time and progress. */ public CalculationStatistics getStatistics() { return this.statistics; } /** ** Contains information about the DPU execution time and progress. *
* * @param statistics * Contains information about the DPU execution time and progress. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCalculationExecutionStatusResult withStatistics(CalculationStatistics statistics) { setStatistics(statistics); 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 (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getStatistics() != null) sb.append("Statistics: ").append(getStatistics()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetCalculationExecutionStatusResult == false) return false; GetCalculationExecutionStatusResult other = (GetCalculationExecutionStatusResult) obj; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getStatistics() == null ^ this.getStatistics() == null) return false; if (other.getStatistics() != null && other.getStatistics().equals(this.getStatistics()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getStatistics() == null) ? 0 : getStatistics().hashCode()); return hashCode; } @Override public GetCalculationExecutionStatusResult clone() { try { return (GetCalculationExecutionStatusResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }