73 lines
2.1 KiB
Java
73 lines
2.1 KiB
Java
|
package o;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/* renamed from: o.Vx, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class C1113Vx extends VB implements ITp {
|
||
|
public final String a;
|
||
|
public final String c;
|
||
|
public final boolean d;
|
||
|
public final List<C1106Vt> e;
|
||
|
|
||
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||
|
public C1113Vx(String str, String str2, List<C1106Vt> list, boolean z) {
|
||
|
super((byte) 0);
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(list, "");
|
||
|
this.c = str;
|
||
|
this.a = str2;
|
||
|
this.e = list;
|
||
|
this.d = z;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
String str2 = this.a;
|
||
|
List<C1106Vt> list = this.e;
|
||
|
boolean z = this.d;
|
||
|
StringBuilder sb = new StringBuilder("CountryDisplay(name=");
|
||
|
sb.append(str);
|
||
|
sb.append(", flagImage=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", channels=");
|
||
|
sb.append(list);
|
||
|
sb.append(", isExpandType=");
|
||
|
sb.append(z);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Multi-variable type inference failed */
|
||
|
@Override // o.VB
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.c.hashCode();
|
||
|
int hashCode2 = this.a.hashCode();
|
||
|
int hashCode3 = this.e.hashCode();
|
||
|
boolean z = this.d;
|
||
|
int i = z;
|
||
|
if (z != 0) {
|
||
|
i = 1;
|
||
|
}
|
||
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + i;
|
||
|
}
|
||
|
|
||
|
@Override // o.ITp
|
||
|
public final String d() {
|
||
|
return this.c;
|
||
|
}
|
||
|
|
||
|
@Override // o.VB
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C1113Vx)) {
|
||
|
return false;
|
||
|
}
|
||
|
C1113Vx c1113Vx = (C1113Vx) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) c1113Vx.c) && C14957gcv.b((Object) this.a, (Object) c1113Vx.a) && C14957gcv.b(this.e, c1113Vx.e) && this.d == c1113Vx.d;
|
||
|
}
|
||
|
}
|