* Description of the batch load task. *
*/ private BatchLoadTaskDescription batchLoadTaskDescription; /** ** Description of the batch load task. *
* * @param batchLoadTaskDescription * Description of the batch load task. */ public void setBatchLoadTaskDescription(BatchLoadTaskDescription batchLoadTaskDescription) { this.batchLoadTaskDescription = batchLoadTaskDescription; } /** ** Description of the batch load task. *
* * @return Description of the batch load task. */ public BatchLoadTaskDescription getBatchLoadTaskDescription() { return this.batchLoadTaskDescription; } /** ** Description of the batch load task. *
* * @param batchLoadTaskDescription * Description of the batch load task. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeBatchLoadTaskResult withBatchLoadTaskDescription(BatchLoadTaskDescription batchLoadTaskDescription) { setBatchLoadTaskDescription(batchLoadTaskDescription); 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 (getBatchLoadTaskDescription() != null) sb.append("BatchLoadTaskDescription: ").append(getBatchLoadTaskDescription()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeBatchLoadTaskResult == false) return false; DescribeBatchLoadTaskResult other = (DescribeBatchLoadTaskResult) obj; if (other.getBatchLoadTaskDescription() == null ^ this.getBatchLoadTaskDescription() == null) return false; if (other.getBatchLoadTaskDescription() != null && other.getBatchLoadTaskDescription().equals(this.getBatchLoadTaskDescription()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getBatchLoadTaskDescription() == null) ? 0 : getBatchLoadTaskDescription().hashCode()); return hashCode; } @Override public DescribeBatchLoadTaskResult clone() { try { return (DescribeBatchLoadTaskResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }