(resourceList);
}
/**
*
* The list of resource ARNs that belong to the component.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setResourceList(java.util.Collection)} or {@link #withResourceList(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param resourceList
* The list of resource ARNs that belong to the component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeComponentResult withResourceList(String... resourceList) {
if (this.resourceList == null) {
setResourceList(new java.util.ArrayList(resourceList.length));
}
for (String ele : resourceList) {
this.resourceList.add(ele);
}
return this;
}
/**
*
* The list of resource ARNs that belong to the component.
*
*
* @param resourceList
* The list of resource ARNs that belong to the component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeComponentResult withResourceList(java.util.Collection resourceList) {
setResourceList(resourceList);
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 (getApplicationComponent() != null)
sb.append("ApplicationComponent: ").append(getApplicationComponent()).append(",");
if (getResourceList() != null)
sb.append("ResourceList: ").append(getResourceList());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeComponentResult == false)
return false;
DescribeComponentResult other = (DescribeComponentResult) obj;
if (other.getApplicationComponent() == null ^ this.getApplicationComponent() == null)
return false;
if (other.getApplicationComponent() != null && other.getApplicationComponent().equals(this.getApplicationComponent()) == false)
return false;
if (other.getResourceList() == null ^ this.getResourceList() == null)
return false;
if (other.getResourceList() != null && other.getResourceList().equals(this.getResourceList()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationComponent() == null) ? 0 : getApplicationComponent().hashCode());
hashCode = prime * hashCode + ((getResourceList() == null) ? 0 : getResourceList().hashCode());
return hashCode;
}
@Override
public DescribeComponentResult clone() {
try {
return (DescribeComponentResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}