67 lines
1.9 KiB
Java
67 lines
1.9 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class IO {
|
|
public boolean a;
|
|
public final String b;
|
|
public final String c;
|
|
public final int d;
|
|
public final String e;
|
|
|
|
public IO(String str, int i, String str2, String str3, boolean z) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.b = str;
|
|
this.d = i;
|
|
this.c = str2;
|
|
this.e = str3;
|
|
this.a = z;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
int i = this.d;
|
|
String str2 = this.c;
|
|
String str3 = this.e;
|
|
boolean z = this.a;
|
|
StringBuilder sb = new StringBuilder("CustomCheckboxDisplay(id=");
|
|
sb.append(str);
|
|
sb.append(", sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", title=");
|
|
sb.append(str2);
|
|
sb.append(", subtitle=");
|
|
sb.append(str3);
|
|
sb.append(", checked=");
|
|
sb.append(z);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
int hashCode = this.b.hashCode();
|
|
int hashCode2 = Integer.hashCode(this.d);
|
|
int hashCode3 = this.c.hashCode();
|
|
int hashCode4 = this.e.hashCode();
|
|
boolean z = this.a;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + i;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof IO)) {
|
|
return false;
|
|
}
|
|
IO io2 = (IO) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) io2.b) && this.d == io2.d && C14957gcv.b((Object) this.c, (Object) io2.c) && C14957gcv.b((Object) this.e, (Object) io2.e) && this.a == io2.a;
|
|
}
|
|
}
|