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

61 lines
1.7 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* renamed from: o.LcC, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0636LcC {
public final boolean a;
public final boolean b;
public final boolean d;
public C0636LcC(boolean z, boolean z2, boolean z3) {
this.d = z;
this.b = z2;
this.a = z3;
}
public final String toString() {
boolean z = this.d;
boolean z2 = this.b;
boolean z3 = this.a;
StringBuilder sb = new StringBuilder("HmlNavigationFlags(skipDocumentUploadFlag=");
sb.append(z);
sb.append(", skipSelectMOAScreen=");
sb.append(z2);
sb.append(", requireIssuerFlag=");
sb.append(z3);
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: r0v6 */
/* JADX WARN: Type inference failed for: r0v7 */
/* JADX WARN: Type inference failed for: r2v0, types: [boolean] */
public final int hashCode() {
boolean z = this.d;
?? r0 = z;
if (z) {
r0 = 1;
}
?? r2 = this.b;
int i = r2;
if (r2 != 0) {
i = 1;
}
boolean z2 = this.a;
return (((r0 * 31) + i) * 31) + (z2 ? 1 : z2 ? 1 : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0636LcC)) {
return false;
}
C0636LcC c0636LcC = (C0636LcC) obj;
return this.d == c0636LcC.d && this.b == c0636LcC.b && this.a == c0636LcC.a;
}
}