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

82 lines
2.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class IIX {
public boolean a;
public boolean b;
public boolean c;
public boolean d;
public boolean e;
public IIX(boolean z, boolean z2, boolean z3, boolean z4, boolean z5) {
this.c = z;
this.e = z2;
this.d = z3;
this.b = z4;
this.a = z5;
}
public final String toString() {
boolean z = this.c;
boolean z2 = this.e;
boolean z3 = this.d;
boolean z4 = this.b;
boolean z5 = this.a;
StringBuilder sb = new StringBuilder("MutualFundToggle(transHistory=");
sb.append(z);
sb.append(", omnibusOnboarding=");
sb.append(z2);
sb.append(", omnibusTransaction=");
sb.append(z3);
sb.append(", productRecommend=");
sb.append(z4);
sb.append(", enablePurchaseSearchAll=");
sb.append(z5);
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: r0v10 */
/* JADX WARN: Type inference failed for: r0v11 */
/* JADX WARN: Type inference failed for: r2v0, types: [boolean] */
/* JADX WARN: Type inference failed for: r3v0, types: [boolean] */
/* JADX WARN: Type inference failed for: r4v0, types: [boolean] */
public final int hashCode() {
boolean z = this.c;
?? r0 = z;
if (z) {
r0 = 1;
}
?? r2 = this.e;
int i = r2;
if (r2 != 0) {
i = 1;
}
?? r3 = this.d;
int i2 = r3;
if (r3 != 0) {
i2 = 1;
}
?? r4 = this.b;
int i3 = r4;
if (r4 != 0) {
i3 = 1;
}
boolean z2 = this.a;
return (((((((r0 * 31) + i) * 31) + i2) * 31) + i3) * 31) + (z2 ? 1 : z2 ? 1 : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IIX)) {
return false;
}
IIX iix = (IIX) obj;
return this.c == iix.c && this.e == iix.e && this.d == iix.d && this.b == iix.b && this.a == iix.a;
}
}