what-the-bank/sources/o/CQc.java

77 lines
2.5 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class CQc {
public final double a;
public final String b;
public final double c;
public final int d;
public final double e;
public final double h;
public final double i;
public final int j;
public CQc(int i, int i2, double d, double d2, double d3, double d4, double d5, String str) {
this.d = i;
this.j = i2;
this.e = d;
this.c = d2;
this.a = d3;
this.h = d4;
this.i = d5;
this.b = str;
}
public final String toString() {
int i = this.d;
int i2 = this.j;
double d = this.e;
double d2 = this.c;
double d3 = this.a;
double d4 = this.h;
double d5 = this.i;
String str = this.b;
StringBuilder sb = new StringBuilder("InstallmentPlans(ippType=");
sb.append(i);
sb.append(", tenure=");
sb.append(i2);
sb.append(", cardInterestRate=");
sb.append(d);
sb.append(", cardInterestAmount=");
sb.append(d2);
sb.append(", monthlyInstallmentAmount=");
sb.append(d3);
sb.append(", yearlyCardInterestRate=");
sb.append(d4);
sb.append(", totalAmount=");
sb.append(d5);
sb.append(", productCode=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.d);
int hashCode2 = Integer.hashCode(this.j);
int hashCode3 = Double.hashCode(this.e);
int hashCode4 = Double.hashCode(this.c);
int hashCode5 = Double.hashCode(this.a);
int hashCode6 = Double.hashCode(this.h);
int hashCode7 = Double.hashCode(this.i);
String str = this.b;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof CQc)) {
return false;
}
CQc cQc = (CQc) obj;
return this.d == cQc.d && this.j == cQc.j && Double.compare(this.e, cQc.e) == 0 && Double.compare(this.c, cQc.c) == 0 && Double.compare(this.a, cQc.a) == 0 && Double.compare(this.h, cQc.h) == 0 && Double.compare(this.i, cQc.i) == 0 && C14957gcv.b((Object) this.b, (Object) cQc.b);
}
}