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

53 lines
1.4 KiB
Java

package o;
/* renamed from: o.twJ, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C17107twJ {
public final double a;
public final double b;
public final double e;
public /* synthetic */ C17107twJ(byte b) {
this(0.0d, 0.0d, 0.0d);
}
public C17107twJ(double d, double d2, double d3) {
this.e = d;
this.a = d2;
this.b = d3;
}
public final String toString() {
double d = this.e;
double d2 = this.a;
double d3 = this.b;
StringBuilder sb = new StringBuilder("DebitCardFee(annualFee=");
sb.append(d);
sb.append(", issuingFee=");
sb.append(d2);
sb.append(", deliveryFee=");
sb.append(d3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((Double.hashCode(this.e) * 31) + Double.hashCode(this.a)) * 31) + Double.hashCode(this.b);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C17107twJ)) {
return false;
}
C17107twJ c17107twJ = (C17107twJ) obj;
return Double.compare(this.e, c17107twJ.e) == 0 && Double.compare(this.a, c17107twJ.a) == 0 && Double.compare(this.b, c17107twJ.b) == 0;
}
public C17107twJ() {
this((byte) 0);
}
}