63 lines
1.8 KiB
Java
63 lines
1.8 KiB
Java
package o;
|
|
|
|
/* renamed from: o.Qn, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C0876Qn {
|
|
public final double a;
|
|
public final boolean c;
|
|
public final double d;
|
|
public final double e;
|
|
|
|
public /* synthetic */ C0876Qn(boolean z, double d, double d2) {
|
|
this(z, d, d2, (byte) 0);
|
|
}
|
|
|
|
private C0876Qn(boolean z, double d, double d2, byte b) {
|
|
this.c = z;
|
|
this.a = d;
|
|
this.d = d2;
|
|
this.e = 10000.0d;
|
|
}
|
|
|
|
public final String toString() {
|
|
boolean z = this.c;
|
|
double d = this.a;
|
|
double d2 = this.d;
|
|
double d3 = this.e;
|
|
StringBuilder sb = new StringBuilder("CreditLimitDisplay(showCreditLimit=");
|
|
sb.append(z);
|
|
sb.append(", minCreditLimit=");
|
|
sb.append(d);
|
|
sb.append(", maxCreditLimit=");
|
|
sb.append(d2);
|
|
sb.append(", delta=");
|
|
sb.append(d3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
|
|
/* JADX WARN: Type inference failed for: r0v8 */
|
|
/* JADX WARN: Type inference failed for: r0v9 */
|
|
public final int hashCode() {
|
|
boolean z = this.c;
|
|
?? r0 = z;
|
|
if (z) {
|
|
r0 = 1;
|
|
}
|
|
return (((((r0 * 31) + Double.hashCode(this.a)) * 31) + Double.hashCode(this.d)) * 31) + Double.hashCode(this.e);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C0876Qn)) {
|
|
return false;
|
|
}
|
|
C0876Qn c0876Qn = (C0876Qn) obj;
|
|
return this.c == c0876Qn.c && Double.compare(this.a, c0876Qn.a) == 0 && Double.compare(this.d, c0876Qn.d) == 0 && Double.compare(this.e, c0876Qn.e) == 0;
|
|
}
|
|
}
|