All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.route53.model.ListGeoLocationsResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Route53 module holds the client classes that are used for communicating with Amazon Route53 Service

There is a newer version: 1.11.98
Show newest version
/*
 * Copyright 2011-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.route53.model;

import java.io.Serializable;

/**
 * 

* A complex type containing the response information for the request. *

*/ public class ListGeoLocationsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* A complex type that contains one GeoLocationDetails element for each location that Amazon Route 53 * supports for geolocation. *

*/ private com.amazonaws.internal.SdkInternalList geoLocationDetailsList; /** *

* A value that indicates whether more locations remain to be listed after the last location in this response. If * so, the value of IsTruncated is true. To get more values, submit another request and * include the values of NextContinentCode, NextCountryCode, and * NextSubdivisionCode in the StartContinentCode, StartCountryCode, and * StartSubdivisionCode, as applicable. *

*/ private Boolean isTruncated; /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextContinentCode in the StartContinentCode parameter in another * GET ListGeoLocations request. *

*/ private String nextContinentCode; /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextCountryCode in the StartCountryCode parameter in another * GET ListGeoLocations request. *

*/ private String nextCountryCode; /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextSubdivisionCode in the StartSubdivisionCode parameter in another * GET ListGeoLocations request. *

*/ private String nextSubdivisionCode; /** *

* The value that you specified for MaxItems in the request. *

*/ private String maxItems; /** *

* A complex type that contains one GeoLocationDetails element for each location that Amazon Route 53 * supports for geolocation. *

* * @return A complex type that contains one GeoLocationDetails element for each location that Amazon * Route 53 supports for geolocation. */ public java.util.List getGeoLocationDetailsList() { if (geoLocationDetailsList == null) { geoLocationDetailsList = new com.amazonaws.internal.SdkInternalList(); } return geoLocationDetailsList; } /** *

* A complex type that contains one GeoLocationDetails element for each location that Amazon Route 53 * supports for geolocation. *

* * @param geoLocationDetailsList * A complex type that contains one GeoLocationDetails element for each location that Amazon * Route 53 supports for geolocation. */ public void setGeoLocationDetailsList(java.util.Collection geoLocationDetailsList) { if (geoLocationDetailsList == null) { this.geoLocationDetailsList = null; return; } this.geoLocationDetailsList = new com.amazonaws.internal.SdkInternalList(geoLocationDetailsList); } /** *

* A complex type that contains one GeoLocationDetails element for each location that Amazon Route 53 * supports for geolocation. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setGeoLocationDetailsList(java.util.Collection)} or * {@link #withGeoLocationDetailsList(java.util.Collection)} if you want to override the existing values. *

* * @param geoLocationDetailsList * A complex type that contains one GeoLocationDetails element for each location that Amazon * Route 53 supports for geolocation. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withGeoLocationDetailsList(GeoLocationDetails... geoLocationDetailsList) { if (this.geoLocationDetailsList == null) { setGeoLocationDetailsList(new com.amazonaws.internal.SdkInternalList(geoLocationDetailsList.length)); } for (GeoLocationDetails ele : geoLocationDetailsList) { this.geoLocationDetailsList.add(ele); } return this; } /** *

* A complex type that contains one GeoLocationDetails element for each location that Amazon Route 53 * supports for geolocation. *

* * @param geoLocationDetailsList * A complex type that contains one GeoLocationDetails element for each location that Amazon * Route 53 supports for geolocation. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withGeoLocationDetailsList(java.util.Collection geoLocationDetailsList) { setGeoLocationDetailsList(geoLocationDetailsList); return this; } /** *

* A value that indicates whether more locations remain to be listed after the last location in this response. If * so, the value of IsTruncated is true. To get more values, submit another request and * include the values of NextContinentCode, NextCountryCode, and * NextSubdivisionCode in the StartContinentCode, StartCountryCode, and * StartSubdivisionCode, as applicable. *

* * @param isTruncated * A value that indicates whether more locations remain to be listed after the last location in this * response. If so, the value of IsTruncated is true. To get more values, submit * another request and include the values of NextContinentCode, NextCountryCode, * and NextSubdivisionCode in the StartContinentCode, StartCountryCode * , and StartSubdivisionCode, as applicable. */ public void setIsTruncated(Boolean isTruncated) { this.isTruncated = isTruncated; } /** *

* A value that indicates whether more locations remain to be listed after the last location in this response. If * so, the value of IsTruncated is true. To get more values, submit another request and * include the values of NextContinentCode, NextCountryCode, and * NextSubdivisionCode in the StartContinentCode, StartCountryCode, and * StartSubdivisionCode, as applicable. *

* * @return A value that indicates whether more locations remain to be listed after the last location in this * response. If so, the value of IsTruncated is true. To get more values, submit * another request and include the values of NextContinentCode, NextCountryCode, * and NextSubdivisionCode in the StartContinentCode, * StartCountryCode, and StartSubdivisionCode, as applicable. */ public Boolean getIsTruncated() { return this.isTruncated; } /** *

* A value that indicates whether more locations remain to be listed after the last location in this response. If * so, the value of IsTruncated is true. To get more values, submit another request and * include the values of NextContinentCode, NextCountryCode, and * NextSubdivisionCode in the StartContinentCode, StartCountryCode, and * StartSubdivisionCode, as applicable. *

* * @param isTruncated * A value that indicates whether more locations remain to be listed after the last location in this * response. If so, the value of IsTruncated is true. To get more values, submit * another request and include the values of NextContinentCode, NextCountryCode, * and NextSubdivisionCode in the StartContinentCode, StartCountryCode * , and StartSubdivisionCode, as applicable. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withIsTruncated(Boolean isTruncated) { setIsTruncated(isTruncated); return this; } /** *

* A value that indicates whether more locations remain to be listed after the last location in this response. If * so, the value of IsTruncated is true. To get more values, submit another request and * include the values of NextContinentCode, NextCountryCode, and * NextSubdivisionCode in the StartContinentCode, StartCountryCode, and * StartSubdivisionCode, as applicable. *

* * @return A value that indicates whether more locations remain to be listed after the last location in this * response. If so, the value of IsTruncated is true. To get more values, submit * another request and include the values of NextContinentCode, NextCountryCode, * and NextSubdivisionCode in the StartContinentCode, * StartCountryCode, and StartSubdivisionCode, as applicable. */ public Boolean isTruncated() { return this.isTruncated; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextContinentCode in the StartContinentCode parameter in another * GET ListGeoLocations request. *

* * @param nextContinentCode * If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextContinentCode in the StartContinentCode * parameter in another GET ListGeoLocations request. */ public void setNextContinentCode(String nextContinentCode) { this.nextContinentCode = nextContinentCode; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextContinentCode in the StartContinentCode parameter in another * GET ListGeoLocations request. *

* * @return If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextContinentCode in the StartContinentCode * parameter in another GET ListGeoLocations request. */ public String getNextContinentCode() { return this.nextContinentCode; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextContinentCode in the StartContinentCode parameter in another * GET ListGeoLocations request. *

* * @param nextContinentCode * If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextContinentCode in the StartContinentCode * parameter in another GET ListGeoLocations request. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withNextContinentCode(String nextContinentCode) { setNextContinentCode(nextContinentCode); return this; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextCountryCode in the StartCountryCode parameter in another * GET ListGeoLocations request. *

* * @param nextCountryCode * If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextCountryCode in the StartCountryCode parameter * in another GET ListGeoLocations request. */ public void setNextCountryCode(String nextCountryCode) { this.nextCountryCode = nextCountryCode; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextCountryCode in the StartCountryCode parameter in another * GET ListGeoLocations request. *

* * @return If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextCountryCode in the StartCountryCode parameter * in another GET ListGeoLocations request. */ public String getNextCountryCode() { return this.nextCountryCode; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextCountryCode in the StartCountryCode parameter in another * GET ListGeoLocations request. *

* * @param nextCountryCode * If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextCountryCode in the StartCountryCode parameter * in another GET ListGeoLocations request. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withNextCountryCode(String nextCountryCode) { setNextCountryCode(nextCountryCode); return this; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextSubdivisionCode in the StartSubdivisionCode parameter in another * GET ListGeoLocations request. *

* * @param nextSubdivisionCode * If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextSubdivisionCode in the StartSubdivisionCode * parameter in another GET ListGeoLocations request. */ public void setNextSubdivisionCode(String nextSubdivisionCode) { this.nextSubdivisionCode = nextSubdivisionCode; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextSubdivisionCode in the StartSubdivisionCode parameter in another * GET ListGeoLocations request. *

* * @return If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextSubdivisionCode in the StartSubdivisionCode * parameter in another GET ListGeoLocations request. */ public String getNextSubdivisionCode() { return this.nextSubdivisionCode; } /** *

* If IsTruncated is true, you can make a follow-up request to display more locations. * Enter the value of NextSubdivisionCode in the StartSubdivisionCode parameter in another * GET ListGeoLocations request. *

* * @param nextSubdivisionCode * If IsTruncated is true, you can make a follow-up request to display more * locations. Enter the value of NextSubdivisionCode in the StartSubdivisionCode * parameter in another GET ListGeoLocations request. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withNextSubdivisionCode(String nextSubdivisionCode) { setNextSubdivisionCode(nextSubdivisionCode); return this; } /** *

* The value that you specified for MaxItems in the request. *

* * @param maxItems * The value that you specified for MaxItems in the request. */ public void setMaxItems(String maxItems) { this.maxItems = maxItems; } /** *

* The value that you specified for MaxItems in the request. *

* * @return The value that you specified for MaxItems in the request. */ public String getMaxItems() { return this.maxItems; } /** *

* The value that you specified for MaxItems in the request. *

* * @param maxItems * The value that you specified for MaxItems in the request. * @return Returns a reference to this object so that method calls can be chained together. */ public ListGeoLocationsResult withMaxItems(String maxItems) { setMaxItems(maxItems); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getGeoLocationDetailsList() != null) sb.append("GeoLocationDetailsList: " + getGeoLocationDetailsList() + ","); if (getIsTruncated() != null) sb.append("IsTruncated: " + getIsTruncated() + ","); if (getNextContinentCode() != null) sb.append("NextContinentCode: " + getNextContinentCode() + ","); if (getNextCountryCode() != null) sb.append("NextCountryCode: " + getNextCountryCode() + ","); if (getNextSubdivisionCode() != null) sb.append("NextSubdivisionCode: " + getNextSubdivisionCode() + ","); if (getMaxItems() != null) sb.append("MaxItems: " + getMaxItems()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListGeoLocationsResult == false) return false; ListGeoLocationsResult other = (ListGeoLocationsResult) obj; if (other.getGeoLocationDetailsList() == null ^ this.getGeoLocationDetailsList() == null) return false; if (other.getGeoLocationDetailsList() != null && other.getGeoLocationDetailsList().equals(this.getGeoLocationDetailsList()) == false) return false; if (other.getIsTruncated() == null ^ this.getIsTruncated() == null) return false; if (other.getIsTruncated() != null && other.getIsTruncated().equals(this.getIsTruncated()) == false) return false; if (other.getNextContinentCode() == null ^ this.getNextContinentCode() == null) return false; if (other.getNextContinentCode() != null && other.getNextContinentCode().equals(this.getNextContinentCode()) == false) return false; if (other.getNextCountryCode() == null ^ this.getNextCountryCode() == null) return false; if (other.getNextCountryCode() != null && other.getNextCountryCode().equals(this.getNextCountryCode()) == false) return false; if (other.getNextSubdivisionCode() == null ^ this.getNextSubdivisionCode() == null) return false; if (other.getNextSubdivisionCode() != null && other.getNextSubdivisionCode().equals(this.getNextSubdivisionCode()) == false) return false; if (other.getMaxItems() == null ^ this.getMaxItems() == null) return false; if (other.getMaxItems() != null && other.getMaxItems().equals(this.getMaxItems()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getGeoLocationDetailsList() == null) ? 0 : getGeoLocationDetailsList().hashCode()); hashCode = prime * hashCode + ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode()); hashCode = prime * hashCode + ((getNextContinentCode() == null) ? 0 : getNextContinentCode().hashCode()); hashCode = prime * hashCode + ((getNextCountryCode() == null) ? 0 : getNextCountryCode().hashCode()); hashCode = prime * hashCode + ((getNextSubdivisionCode() == null) ? 0 : getNextSubdivisionCode().hashCode()); hashCode = prime * hashCode + ((getMaxItems() == null) ? 0 : getMaxItems().hashCode()); return hashCode; } @Override public ListGeoLocationsResult clone() { try { return (ListGeoLocationsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy