com.graphhopper.routeopt.client.model.Address Maven / Gradle / Ivy
/**
* Route Optimization API
* Our Route Optimization API solves the so called vehicle routing problem fast. It calculates an optimal tour for a set of vehicles, services and constraints
*
* OpenAPI spec version: 1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.graphhopper.routeopt.client.model;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* Address
*/
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-09-22T09:15:07.913+02:00")
public class Address {
@SerializedName("location_id")
private String locationId = null;
@SerializedName("lon")
private Double lon = null;
@SerializedName("lat")
private Double lat = null;
public Address locationId(String locationId) {
this.locationId = locationId;
return this;
}
/**
* Unique identifier of location
* @return locationId
**/
@ApiModelProperty(example = "null", value = "Unique identifier of location")
public String getLocationId() {
return locationId;
}
public void setLocationId(String locationId) {
this.locationId = locationId;
}
public Address lon(Double lon) {
this.lon = lon;
return this;
}
/**
* longitude
* @return lon
**/
@ApiModelProperty(example = "null", value = "longitude")
public Double getLon() {
return lon;
}
public void setLon(Double lon) {
this.lon = lon;
}
public Address lat(Double lat) {
this.lat = lat;
return this;
}
/**
* latitude
* @return lat
**/
@ApiModelProperty(example = "null", value = "latitude")
public Double getLat() {
return lat;
}
public void setLat(Double lat) {
this.lat = lat;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Address address = (Address) o;
return Objects.equals(this.locationId, address.locationId) &&
Objects.equals(this.lon, address.lon) &&
Objects.equals(this.lat, address.lat);
}
@Override
public int hashCode() {
return Objects.hash(locationId, lon, lat);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Address {\n");
sb.append(" locationId: ").append(toIndentedString(locationId)).append("\n");
sb.append(" lon: ").append(toIndentedString(lon)).append("\n");
sb.append(" lat: ").append(toIndentedString(lat)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}