49 lines
1.2 KiB
Java
49 lines
1.2 KiB
Java
|
package o;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class IQ {
|
||
|
public final String b;
|
||
|
public final IO c;
|
||
|
public final List<IO> e;
|
||
|
|
||
|
public IQ(String str, IO io2, List<IO> list) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(io2, "");
|
||
|
C14957gcv.e(list, "");
|
||
|
this.b = str;
|
||
|
this.c = io2;
|
||
|
this.e = list;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
IO io2 = this.c;
|
||
|
List<IO> list = this.e;
|
||
|
StringBuilder sb = new StringBuilder("CustomCheckboxGroupDisplay(title=");
|
||
|
sb.append(str);
|
||
|
sb.append(", mainCheckbox=");
|
||
|
sb.append(io2);
|
||
|
sb.append(", children=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((this.b.hashCode() * 31) + this.c.hashCode()) * 31) + this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof IQ)) {
|
||
|
return false;
|
||
|
}
|
||
|
IQ iq = (IQ) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) iq.b) && C14957gcv.b(this.c, iq.c) && C14957gcv.b(this.e, iq.e);
|
||
|
}
|
||
|
}
|