85 lines
2.4 KiB
Java
85 lines
2.4 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* renamed from: o.Gt, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class C0448Gt implements Parcelable {
|
||
|
public static final Parcelable.Creator<C0448Gt> CREATOR = new HBt();
|
||
|
public double a;
|
||
|
public double c;
|
||
|
public double d;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public C0448Gt(double d, double d2, double d3) {
|
||
|
this.d = d;
|
||
|
this.c = d2;
|
||
|
this.a = d3;
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ C0448Gt(byte b) {
|
||
|
this(0.0d, 0.0d, 0.0d);
|
||
|
}
|
||
|
|
||
|
/* renamed from: o.Gt$HBt */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class HBt implements Parcelable.Creator<C0448Gt> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ C0448Gt createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new C0448Gt(parcel.readDouble(), parcel.readDouble(), parcel.readDouble());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ C0448Gt[] newArray(int i) {
|
||
|
return new C0448Gt[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeDouble(this.d);
|
||
|
parcel.writeDouble(this.c);
|
||
|
parcel.writeDouble(this.a);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
double d = this.d;
|
||
|
double d2 = this.c;
|
||
|
double d3 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("InstPaymentInfoResponseDisplay(totalPayment=");
|
||
|
sb.append(d);
|
||
|
sb.append(", totalInterest=");
|
||
|
sb.append(d2);
|
||
|
sb.append(", monthlyPayment=");
|
||
|
sb.append(d3);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((Double.hashCode(this.d) * 31) + Double.hashCode(this.c)) * 31) + Double.hashCode(this.a);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C0448Gt)) {
|
||
|
return false;
|
||
|
}
|
||
|
C0448Gt c0448Gt = (C0448Gt) obj;
|
||
|
return Double.compare(this.d, c0448Gt.d) == 0 && Double.compare(this.c, c0448Gt.c) == 0 && Double.compare(this.a, c0448Gt.a) == 0;
|
||
|
}
|
||
|
|
||
|
public C0448Gt() {
|
||
|
this((byte) 0);
|
||
|
}
|
||
|
}
|