62 lines
1.7 KiB
Java
62 lines
1.7 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.dnU, reason: case insensitive filesystem */
|
|
/* loaded from: classes.dex */
|
|
public final class C9632dnU {
|
|
|
|
@SerializedName("is_enabled")
|
|
public boolean a;
|
|
|
|
@SerializedName("model")
|
|
public String c;
|
|
|
|
@SerializedName("brand")
|
|
public String d;
|
|
|
|
@SerializedName("display_size")
|
|
public int e;
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.c;
|
|
int i = this.e;
|
|
boolean z = this.a;
|
|
StringBuilder sb = new StringBuilder("DisplayConfigEntity(brand=");
|
|
sb.append(str);
|
|
sb.append(", model=");
|
|
sb.append(str2);
|
|
sb.append(", displaySize=");
|
|
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.c.hashCode();
|
|
int hashCode3 = Integer.hashCode(this.e);
|
|
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 C9632dnU)) {
|
|
return false;
|
|
}
|
|
C9632dnU c9632dnU = (C9632dnU) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) c9632dnU.d) && C14957gcv.b((Object) this.c, (Object) c9632dnU.c) && this.e == c9632dnU.e && this.a == c9632dnU.a;
|
|
}
|
|
}
|