44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
package o;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ZBS {
|
|
public final double b;
|
|
public final double c;
|
|
public final double e;
|
|
|
|
public ZBS(double d, double d2, double d3) {
|
|
this.b = d;
|
|
this.c = d2;
|
|
this.e = d3;
|
|
}
|
|
|
|
public final String toString() {
|
|
double d = this.b;
|
|
double d2 = this.c;
|
|
double d3 = this.e;
|
|
StringBuilder sb = new StringBuilder("LatLng(latitude=");
|
|
sb.append(d);
|
|
sb.append(", longitude=");
|
|
sb.append(d2);
|
|
sb.append(", accuracy=");
|
|
sb.append(d3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((Double.hashCode(this.b) * 31) + Double.hashCode(this.c)) * 31) + Double.hashCode(this.e);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof ZBS)) {
|
|
return false;
|
|
}
|
|
ZBS zbs = (ZBS) obj;
|
|
return Double.compare(this.b, zbs.b) == 0 && Double.compare(this.c, zbs.c) == 0 && Double.compare(this.e, zbs.e) == 0;
|
|
}
|
|
}
|