44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class mNn {
|
||
|
public final double a;
|
||
|
public final double d;
|
||
|
public final double e;
|
||
|
|
||
|
public mNn(double d, double d2, double d3) {
|
||
|
this.e = d;
|
||
|
this.a = d2;
|
||
|
this.d = d3;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
double d = this.e;
|
||
|
double d2 = this.a;
|
||
|
double d3 = this.d;
|
||
|
StringBuilder sb = new StringBuilder("PrepaidCardFee(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.d);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof mNn)) {
|
||
|
return false;
|
||
|
}
|
||
|
mNn mnn = (mNn) obj;
|
||
|
return Double.compare(this.e, mnn.e) == 0 && Double.compare(this.a, mnn.a) == 0 && Double.compare(this.d, mnn.d) == 0;
|
||
|
}
|
||
|
}
|