* An array of access point descriptions. *
*/ private com.amazonaws.internal.SdkInternalList* Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. *
*/ private String nextToken; /** ** An array of access point descriptions. *
* * @return An array of access point descriptions. */ public java.util.List* An array of access point descriptions. *
* * @param accessPoints * An array of access point descriptions. */ public void setAccessPoints(java.util.Collection* An array of access point descriptions. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setAccessPoints(java.util.Collection)} or {@link #withAccessPoints(java.util.Collection)} if you want to * override the existing values. *
* * @param accessPoints * An array of access point descriptions. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeAccessPointsResult withAccessPoints(AccessPointDescription... accessPoints) { if (this.accessPoints == null) { setAccessPoints(new com.amazonaws.internal.SdkInternalList* An array of access point descriptions. *
* * @param accessPoints * An array of access point descriptions. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeAccessPointsResult withAccessPoints(java.util.Collection* Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. *
* * @param nextToken * Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** ** Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. *
* * @return Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. */ public String getNextToken() { return this.nextToken; } /** ** Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. *
* * @param nextToken * Present if there are more access points than returned in the response. You can use the NextMarker in the * subsequent request to fetch the additional descriptions. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeAccessPointsResult withNextToken(String nextToken) { setNextToken(nextToken); 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 (getAccessPoints() != null) sb.append("AccessPoints: ").append(getAccessPoints()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeAccessPointsResult == false) return false; DescribeAccessPointsResult other = (DescribeAccessPointsResult) obj; if (other.getAccessPoints() == null ^ this.getAccessPoints() == null) return false; if (other.getAccessPoints() != null && other.getAccessPoints().equals(this.getAccessPoints()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccessPoints() == null) ? 0 : getAccessPoints().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public DescribeAccessPointsResult clone() { try { return (DescribeAccessPointsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }