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

61 lines
1.7 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* renamed from: o.dos, reason: case insensitive filesystem */
/* loaded from: classes4.dex */
public final class C9704dos {
public final boolean a;
public final int b;
public final String d;
public final String e;
public C9704dos(String str, String str2, int i, boolean z) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.d = str;
this.e = str2;
this.b = i;
this.a = z;
}
public final String toString() {
String str = this.d;
String str2 = this.e;
int i = this.b;
boolean z = this.a;
StringBuilder sb = new StringBuilder("DisplayConfig(brand=");
sb.append(str);
sb.append(", model=");
sb.append(str2);
sb.append(", screenSize=");
sb.append(i);
sb.append(", isEnable=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.d.hashCode();
int hashCode2 = this.e.hashCode();
int hashCode3 = Integer.hashCode(this.b);
boolean z = this.a;
int i = z;
if (z != 0) {
i = 1;
}
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C9704dos)) {
return false;
}
C9704dos c9704dos = (C9704dos) obj;
return C14957gcv.b((Object) this.d, (Object) c9704dos.d) && C14957gcv.b((Object) this.e, (Object) c9704dos.e) && this.b == c9704dos.b && this.a == c9704dos.a;
}
}