* The number of steps that can be executed concurrently. *
*/ private Integer stepConcurrencyLevel; /** ** The number of steps that can be executed concurrently. *
* * @param stepConcurrencyLevel * The number of steps that can be executed concurrently. */ public void setStepConcurrencyLevel(Integer stepConcurrencyLevel) { this.stepConcurrencyLevel = stepConcurrencyLevel; } /** ** The number of steps that can be executed concurrently. *
* * @return The number of steps that can be executed concurrently. */ public Integer getStepConcurrencyLevel() { return this.stepConcurrencyLevel; } /** ** The number of steps that can be executed concurrently. *
* * @param stepConcurrencyLevel * The number of steps that can be executed concurrently. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyClusterResult withStepConcurrencyLevel(Integer stepConcurrencyLevel) { setStepConcurrencyLevel(stepConcurrencyLevel); 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 (getStepConcurrencyLevel() != null) sb.append("StepConcurrencyLevel: ").append(getStepConcurrencyLevel()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyClusterResult == false) return false; ModifyClusterResult other = (ModifyClusterResult) obj; if (other.getStepConcurrencyLevel() == null ^ this.getStepConcurrencyLevel() == null) return false; if (other.getStepConcurrencyLevel() != null && other.getStepConcurrencyLevel().equals(this.getStepConcurrencyLevel()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStepConcurrencyLevel() == null) ? 0 : getStepConcurrencyLevel().hashCode()); return hashCode; } @Override public ModifyClusterResult clone() { try { return (ModifyClusterResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }