99 lines
3.3 KiB
Java
99 lines
3.3 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class ME implements Parcelable {
|
||
|
public static final Parcelable.Creator<ME> CREATOR = new Parcelable.Creator<ME>() { // from class: o.ME.1
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ ME createFromParcel(Parcel parcel) {
|
||
|
return new ME(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ ME[] newArray(int i) {
|
||
|
return new ME[i];
|
||
|
}
|
||
|
};
|
||
|
public double a;
|
||
|
public String b;
|
||
|
public double c;
|
||
|
public String d;
|
||
|
public boolean e;
|
||
|
public double g;
|
||
|
public double j;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public ME(boolean z, String str, String str2, double d, double d2, double d3, double d4) {
|
||
|
this.e = z;
|
||
|
this.b = str;
|
||
|
this.d = str2;
|
||
|
this.a = d;
|
||
|
this.g = d2;
|
||
|
this.j = d3;
|
||
|
this.c = d4;
|
||
|
}
|
||
|
|
||
|
protected ME(Parcel parcel) {
|
||
|
this.e = parcel.readByte() != 0;
|
||
|
this.b = parcel.readString();
|
||
|
this.d = parcel.readString();
|
||
|
this.a = parcel.readDouble();
|
||
|
this.g = parcel.readDouble();
|
||
|
this.j = parcel.readDouble();
|
||
|
this.c = parcel.readDouble();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof ME)) {
|
||
|
return false;
|
||
|
}
|
||
|
ME me2 = (ME) obj;
|
||
|
if (this.e != me2.e || Double.compare(me2.a, this.a) != 0 || Double.compare(me2.g, this.g) != 0 || Double.compare(me2.j, this.j) != 0 || Double.compare(me2.c, this.c) != 0) {
|
||
|
return false;
|
||
|
}
|
||
|
String str = this.b;
|
||
|
if (str == null ? me2.b != null : !str.equals(me2.b)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str2 = this.d;
|
||
|
if (str2 != null) {
|
||
|
return str2.equals(me2.d);
|
||
|
}
|
||
|
return me2.d == null;
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeByte(this.e ? (byte) 1 : (byte) 0);
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeDouble(this.a);
|
||
|
parcel.writeDouble(this.g);
|
||
|
parcel.writeDouble(this.j);
|
||
|
parcel.writeDouble(this.c);
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
boolean z = this.e;
|
||
|
String str = this.b;
|
||
|
int hashCode = str != null ? str.hashCode() : 0;
|
||
|
String str2 = this.d;
|
||
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
||
|
long doubleToLongBits = Double.doubleToLongBits(this.a);
|
||
|
long doubleToLongBits2 = Double.doubleToLongBits(this.g);
|
||
|
int i = (int) (doubleToLongBits2 ^ (doubleToLongBits2 >>> 32));
|
||
|
long doubleToLongBits3 = Double.doubleToLongBits(this.j);
|
||
|
long doubleToLongBits4 = Double.doubleToLongBits(this.c);
|
||
|
return ((((((((((((z ? 1 : 0) * 31) + hashCode) * 31) + hashCode2) * 31) + ((int) (doubleToLongBits ^ (doubleToLongBits >>> 32)))) * 31) + i) * 31) + ((int) (doubleToLongBits3 ^ (doubleToLongBits3 >>> 32)))) * 31) + ((int) ((doubleToLongBits4 >>> 32) ^ doubleToLongBits4));
|
||
|
}
|
||
|
}
|