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

49 lines
1.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class Ibr {
public LhO a;
public final szZ b;
public final UHc e;
public Ibr(szZ szz, UHc uHc, LhO lhO) {
this.b = szz;
this.e = uHc;
this.a = lhO;
}
public final String toString() {
szZ szz = this.b;
UHc uHc = this.e;
LhO lhO = this.a;
StringBuilder sb = new StringBuilder("InvestmentSummary(securities=");
sb.append(szz);
sb.append(", mutualFunds=");
sb.append(uHc);
sb.append(", ad=");
sb.append(lhO);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
szZ szz = this.b;
int hashCode = szz == null ? 0 : szz.hashCode();
UHc uHc = this.e;
int hashCode2 = uHc == null ? 0 : uHc.hashCode();
LhO lhO = this.a;
return (((hashCode * 31) + hashCode2) * 31) + (lhO != null ? lhO.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Ibr)) {
return false;
}
Ibr ibr = (Ibr) obj;
return C14957gcv.b(this.b, ibr.b) && C14957gcv.b(this.e, ibr.e) && C14957gcv.b(this.a, ibr.a);
}
}