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

com.amazonaws.services.cloudsearchv2.model.LatLonOptions Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
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.cloudsearchv2.model;

import java.io.Serializable;

/**
 * 

* Options for a latlon field. A latlon field contains a location stored as a * latitude and longitude value pair. Present if IndexFieldType * specifies the field is of type latlon. All options are enabled * by default. *

*/ public class LatLonOptions implements Serializable, Cloneable { /** * A value to use for the field if the field isn't specified for a document. */ private String defaultValue; private String sourceField; /** *

* Whether facet information can be returned for the field. *

*/ private Boolean facetEnabled; /** *

* Whether the contents of the field are searchable. *

*/ private Boolean searchEnabled; /** *

* Whether the contents of the field can be returned in the search results. *

*/ private Boolean returnEnabled; /** *

* Whether the field can be used to sort the search results. *

*/ private Boolean sortEnabled; /** * A value to use for the field if the field isn't specified for a document. * * @param defaultValue * A value to use for the field if the field isn't specified for a * document. */ public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } /** * A value to use for the field if the field isn't specified for a document. * * @return A value to use for the field if the field isn't specified for a * document. */ public String getDefaultValue() { return this.defaultValue; } /** * A value to use for the field if the field isn't specified for a document. * * @param defaultValue * A value to use for the field if the field isn't specified for a * document. * @return Returns a reference to this object so that method calls can be * chained together. */ public LatLonOptions withDefaultValue(String defaultValue) { setDefaultValue(defaultValue); return this; } /** * @param sourceField */ public void setSourceField(String sourceField) { this.sourceField = sourceField; } /** * @return */ public String getSourceField() { return this.sourceField; } /** * @param sourceField * @return Returns a reference to this object so that method calls can be * chained together. */ public LatLonOptions withSourceField(String sourceField) { setSourceField(sourceField); return this; } /** *

* Whether facet information can be returned for the field. *

* * @param facetEnabled * Whether facet information can be returned for the field. */ public void setFacetEnabled(Boolean facetEnabled) { this.facetEnabled = facetEnabled; } /** *

* Whether facet information can be returned for the field. *

* * @return Whether facet information can be returned for the field. */ public Boolean getFacetEnabled() { return this.facetEnabled; } /** *

* Whether facet information can be returned for the field. *

* * @param facetEnabled * Whether facet information can be returned for the field. * @return Returns a reference to this object so that method calls can be * chained together. */ public LatLonOptions withFacetEnabled(Boolean facetEnabled) { setFacetEnabled(facetEnabled); return this; } /** *

* Whether facet information can be returned for the field. *

* * @return Whether facet information can be returned for the field. */ public Boolean isFacetEnabled() { return this.facetEnabled; } /** *

* Whether the contents of the field are searchable. *

* * @param searchEnabled * Whether the contents of the field are searchable. */ public void setSearchEnabled(Boolean searchEnabled) { this.searchEnabled = searchEnabled; } /** *

* Whether the contents of the field are searchable. *

* * @return Whether the contents of the field are searchable. */ public Boolean getSearchEnabled() { return this.searchEnabled; } /** *

* Whether the contents of the field are searchable. *

* * @param searchEnabled * Whether the contents of the field are searchable. * @return Returns a reference to this object so that method calls can be * chained together. */ public LatLonOptions withSearchEnabled(Boolean searchEnabled) { setSearchEnabled(searchEnabled); return this; } /** *

* Whether the contents of the field are searchable. *

* * @return Whether the contents of the field are searchable. */ public Boolean isSearchEnabled() { return this.searchEnabled; } /** *

* Whether the contents of the field can be returned in the search results. *

* * @param returnEnabled * Whether the contents of the field can be returned in the search * results. */ public void setReturnEnabled(Boolean returnEnabled) { this.returnEnabled = returnEnabled; } /** *

* Whether the contents of the field can be returned in the search results. *

* * @return Whether the contents of the field can be returned in the search * results. */ public Boolean getReturnEnabled() { return this.returnEnabled; } /** *

* Whether the contents of the field can be returned in the search results. *

* * @param returnEnabled * Whether the contents of the field can be returned in the search * results. * @return Returns a reference to this object so that method calls can be * chained together. */ public LatLonOptions withReturnEnabled(Boolean returnEnabled) { setReturnEnabled(returnEnabled); return this; } /** *

* Whether the contents of the field can be returned in the search results. *

* * @return Whether the contents of the field can be returned in the search * results. */ public Boolean isReturnEnabled() { return this.returnEnabled; } /** *

* Whether the field can be used to sort the search results. *

* * @param sortEnabled * Whether the field can be used to sort the search results. */ public void setSortEnabled(Boolean sortEnabled) { this.sortEnabled = sortEnabled; } /** *

* Whether the field can be used to sort the search results. *

* * @return Whether the field can be used to sort the search results. */ public Boolean getSortEnabled() { return this.sortEnabled; } /** *

* Whether the field can be used to sort the search results. *

* * @param sortEnabled * Whether the field can be used to sort the search results. * @return Returns a reference to this object so that method calls can be * chained together. */ public LatLonOptions withSortEnabled(Boolean sortEnabled) { setSortEnabled(sortEnabled); return this; } /** *

* Whether the field can be used to sort the search results. *

* * @return Whether the field can be used to sort the search results. */ public Boolean isSortEnabled() { return this.sortEnabled; } /** * 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 (getDefaultValue() != null) sb.append("DefaultValue: " + getDefaultValue() + ","); if (getSourceField() != null) sb.append("SourceField: " + getSourceField() + ","); if (getFacetEnabled() != null) sb.append("FacetEnabled: " + getFacetEnabled() + ","); if (getSearchEnabled() != null) sb.append("SearchEnabled: " + getSearchEnabled() + ","); if (getReturnEnabled() != null) sb.append("ReturnEnabled: " + getReturnEnabled() + ","); if (getSortEnabled() != null) sb.append("SortEnabled: " + getSortEnabled()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LatLonOptions == false) return false; LatLonOptions other = (LatLonOptions) obj; if (other.getDefaultValue() == null ^ this.getDefaultValue() == null) return false; if (other.getDefaultValue() != null && other.getDefaultValue().equals(this.getDefaultValue()) == false) return false; if (other.getSourceField() == null ^ this.getSourceField() == null) return false; if (other.getSourceField() != null && other.getSourceField().equals(this.getSourceField()) == false) return false; if (other.getFacetEnabled() == null ^ this.getFacetEnabled() == null) return false; if (other.getFacetEnabled() != null && other.getFacetEnabled().equals(this.getFacetEnabled()) == false) return false; if (other.getSearchEnabled() == null ^ this.getSearchEnabled() == null) return false; if (other.getSearchEnabled() != null && other.getSearchEnabled().equals(this.getSearchEnabled()) == false) return false; if (other.getReturnEnabled() == null ^ this.getReturnEnabled() == null) return false; if (other.getReturnEnabled() != null && other.getReturnEnabled().equals(this.getReturnEnabled()) == false) return false; if (other.getSortEnabled() == null ^ this.getSortEnabled() == null) return false; if (other.getSortEnabled() != null && other.getSortEnabled().equals(this.getSortEnabled()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDefaultValue() == null) ? 0 : getDefaultValue() .hashCode()); hashCode = prime * hashCode + ((getSourceField() == null) ? 0 : getSourceField().hashCode()); hashCode = prime * hashCode + ((getFacetEnabled() == null) ? 0 : getFacetEnabled() .hashCode()); hashCode = prime * hashCode + ((getSearchEnabled() == null) ? 0 : getSearchEnabled() .hashCode()); hashCode = prime * hashCode + ((getReturnEnabled() == null) ? 0 : getReturnEnabled() .hashCode()); hashCode = prime * hashCode + ((getSortEnabled() == null) ? 0 : getSortEnabled().hashCode()); return hashCode; } @Override public LatLonOptions clone() { try { return (LatLonOptions) 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