1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package androidx.room.integration.testapp.vo;
18
19public class Coordinates {
20    public double lat;
21    public double lng;
22
23    @Override
24    public boolean equals(Object o) {
25        if (this == o) return true;
26        if (o == null || getClass() != o.getClass()) return false;
27
28        Coordinates that = (Coordinates) o;
29
30        if (Double.compare(that.lat, lat) != 0) return false;
31        return Double.compare(that.lng, lng) == 0;
32    }
33
34    @Override
35    public int hashCode() {
36        int result;
37        long temp;
38        temp = Double.doubleToLongBits(lat);
39        result = (int) (temp ^ (temp >>> 32));
40        temp = Double.doubleToLongBits(lng);
41        result = 31 * result + (int) (temp ^ (temp >>> 32));
42        return result;
43    }
44}
45