com.google.cloud.datastore.LatLng Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-datastore Show documentation
Show all versions of google-cloud-datastore Show documentation
Java idiomatic client for Google Cloud Datastore.
/*
* Copyright 2015 Google LLC
*
* 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.google.cloud.datastore;
import static com.google.common.base.Preconditions.checkArgument;
import java.io.Serializable;
import java.util.Objects;
/**
* A Google Cloud Datastore LatLng (represented by latitude and longitude in degrees). This class is
* immutable.
*
* @see Google Cloud Datastore
* Entities, Properties, and Keys
*/
public final class LatLng implements Serializable {
private static final long serialVersionUID = -3739859034159591779L;
private final double latitude;
private final double longitude;
LatLng(double latitude, double longitude) {
checkArgument(
latitude >= -90.0 && latitude <= 90.0, "latitude must be in the range [-90, 90] degrees");
checkArgument(
longitude >= -180.0 && longitude <= 180.0,
"latitude must be in the range [-180, 180] degrees");
this.latitude = latitude;
this.longitude = longitude;
}
/** Returns the latitude. */
public double getLatitude() {
return latitude;
}
/** Returns the longitude. */
public double getLongitude() {
return longitude;
}
@Override
public String toString() {
return Double.toString(latitude) + ", " + Double.toString(longitude);
}
@Override
public int hashCode() {
return Objects.hash(latitude, longitude);
}
@Override
public boolean equals(Object obj) {
return obj == this
|| (obj instanceof LatLng
&& this.latitude == ((LatLng) obj).latitude
&& this.longitude == ((LatLng) obj).longitude);
}
public static LatLng of(double latitude, double longitude) {
return new LatLng(latitude, longitude);
}
protected com.google.type.LatLng toPb() {
return com.google.type.LatLng.newBuilder()
.setLatitude(latitude)
.setLongitude(longitude)
.build();
}
}