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

64 lines
1.8 KiB
Java

package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class WF {
public final boolean b;
public final List<PL> c;
public final boolean d;
public final List<PL> e;
/* JADX WARN: Multi-variable type inference failed */
public WF(boolean z, boolean z2, List<? extends PL> list, List<? extends PL> list2) {
C14957gcv.e(list, "");
C14957gcv.e(list2, "");
this.b = z;
this.d = z2;
this.c = list;
this.e = list2;
}
public final String toString() {
boolean z = this.b;
boolean z2 = this.d;
List<PL> list = this.c;
List<PL> list2 = this.e;
StringBuilder sb = new StringBuilder("SingleFormSelectAccountDisplay(openMfFlag=");
sb.append(z);
sb.append(", openSCBSFlag=");
sb.append(z2);
sb.append(", mfDepositList=");
sb.append(list);
sb.append(", scbsDepositList=");
sb.append(list2);
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: r0v8 */
/* JADX WARN: Type inference failed for: r0v9 */
public final int hashCode() {
boolean z = this.b;
?? r0 = z;
if (z) {
r0 = 1;
}
boolean z2 = this.d;
return (((((r0 * 31) + (z2 ? 1 : z2 ? 1 : 0)) * 31) + this.c.hashCode()) * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WF)) {
return false;
}
WF wf = (WF) obj;
return this.b == wf.b && this.d == wf.d && C14957gcv.b(this.c, wf.c) && C14957gcv.b(this.e, wf.e);
}
}