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

82 lines
2.3 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class pAC {
public final boolean a;
public final boolean b;
public final boolean c;
public final boolean d;
public final boolean e;
public pAC(boolean z, boolean z2, boolean z3, boolean z4, boolean z5) {
this.a = z;
this.e = z2;
this.c = z3;
this.b = z4;
this.d = z5;
}
public final String toString() {
boolean z = this.a;
boolean z2 = this.e;
boolean z3 = this.c;
boolean z4 = this.b;
boolean z5 = this.d;
StringBuilder sb = new StringBuilder("DocumentFeedback(isBlurry=");
sb.append(z);
sb.append(", isMissingBorder=");
sb.append(z2);
sb.append(", isLowContrastBackground=");
sb.append(z3);
sb.append(", isOverSaturated=");
sb.append(z4);
sb.append(", isUnderSaturated=");
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.a;
?? r0 = z;
if (z) {
r0 = 1;
}
?? r2 = this.e;
int i = r2;
if (r2 != 0) {
i = 1;
}
?? r3 = this.c;
int i2 = r3;
if (r3 != 0) {
i2 = 1;
}
?? r4 = this.b;
int i3 = r4;
if (r4 != 0) {
i3 = 1;
}
boolean z2 = this.d;
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 pAC)) {
return false;
}
pAC pac = (pAC) obj;
return this.a == pac.a && this.e == pac.e && this.c == pac.c && this.b == pac.b && this.d == pac.d;
}
}