* A ProactiveInsight
object that represents the requested insight.
*
* A ReactiveInsight
object that represents the requested insight.
*
* A ProactiveInsight
object that represents the requested insight.
*
ProactiveInsight
object that represents the requested insight.
*/
public void setProactiveInsight(ProactiveInsight proactiveInsight) {
this.proactiveInsight = proactiveInsight;
}
/**
*
* A ProactiveInsight
object that represents the requested insight.
*
ProactiveInsight
object that represents the requested insight.
*/
public ProactiveInsight getProactiveInsight() {
return this.proactiveInsight;
}
/**
*
* A ProactiveInsight
object that represents the requested insight.
*
ProactiveInsight
object that represents the requested insight.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeInsightResult withProactiveInsight(ProactiveInsight proactiveInsight) {
setProactiveInsight(proactiveInsight);
return this;
}
/**
*
* A ReactiveInsight
object that represents the requested insight.
*
ReactiveInsight
object that represents the requested insight.
*/
public void setReactiveInsight(ReactiveInsight reactiveInsight) {
this.reactiveInsight = reactiveInsight;
}
/**
*
* A ReactiveInsight
object that represents the requested insight.
*
ReactiveInsight
object that represents the requested insight.
*/
public ReactiveInsight getReactiveInsight() {
return this.reactiveInsight;
}
/**
*
* A ReactiveInsight
object that represents the requested insight.
*
ReactiveInsight
object that represents the requested insight.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeInsightResult withReactiveInsight(ReactiveInsight reactiveInsight) {
setReactiveInsight(reactiveInsight);
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 (getProactiveInsight() != null)
sb.append("ProactiveInsight: ").append(getProactiveInsight()).append(",");
if (getReactiveInsight() != null)
sb.append("ReactiveInsight: ").append(getReactiveInsight());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeInsightResult == false)
return false;
DescribeInsightResult other = (DescribeInsightResult) obj;
if (other.getProactiveInsight() == null ^ this.getProactiveInsight() == null)
return false;
if (other.getProactiveInsight() != null && other.getProactiveInsight().equals(this.getProactiveInsight()) == false)
return false;
if (other.getReactiveInsight() == null ^ this.getReactiveInsight() == null)
return false;
if (other.getReactiveInsight() != null && other.getReactiveInsight().equals(this.getReactiveInsight()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getProactiveInsight() == null) ? 0 : getProactiveInsight().hashCode());
hashCode = prime * hashCode + ((getReactiveInsight() == null) ? 0 : getReactiveInsight().hashCode());
return hashCode;
}
@Override
public DescribeInsightResult clone() {
try {
return (DescribeInsightResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}