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

42 lines
1.0 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class UOa {
private final Double d;
private final String e;
public UOa(String str, Double d) {
this.e = str;
this.d = d;
}
public final String toString() {
String str = this.e;
Double d = this.d;
StringBuilder sb = new StringBuilder("TenorSelected(schemeCode=");
sb.append(str);
sb.append(", effectiveInterestRate=");
sb.append(d);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
Double d = this.d;
return (hashCode * 31) + (d != null ? d.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UOa)) {
return false;
}
UOa uOa = (UOa) obj;
return C14957gcv.b((Object) this.e, (Object) uOa.e) && C14957gcv.b(this.d, uOa.d);
}
}