121 lines
3.3 KiB
Java
121 lines
3.3 KiB
Java
package o;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class MK {
|
|
public final int a;
|
|
|
|
private MK(int i) {
|
|
this.a = i;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS extends MK {
|
|
public List<MG> c;
|
|
|
|
/* JADX WARN: Illegal instructions before constructor call */
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public IeS(java.util.List<o.MG> r2) {
|
|
/*
|
|
r1 = this;
|
|
java.lang.String r0 = ""
|
|
o.C14957gcv.e(r2, r0)
|
|
r0 = 0
|
|
r1.<init>(r0, r0)
|
|
r1.c = r2
|
|
return
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: o.MK.IeS.<init>(java.util.List):void");
|
|
}
|
|
|
|
public final String toString() {
|
|
List<MG> list = this.c;
|
|
StringBuilder sb = new StringBuilder("ProductMenu(data=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof IeS) && C14957gcv.b(this.c, ((IeS) obj).c);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class HBt extends MK {
|
|
public String e;
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public HBt(String str) {
|
|
super(1, (byte) 0);
|
|
C14957gcv.e(str, "");
|
|
this.e = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
StringBuilder sb = new StringBuilder("Label(label=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof HBt) && C14957gcv.b((Object) this.e, (Object) ((HBt) obj).e);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class Sts extends MK {
|
|
public List<MH> c;
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public Sts(List<MH> list) {
|
|
super(2, (byte) 0);
|
|
C14957gcv.e(list, "");
|
|
this.c = list;
|
|
}
|
|
|
|
public final String toString() {
|
|
List<MH> list = this.c;
|
|
StringBuilder sb = new StringBuilder("RecommendedProducts(data=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof Sts) && C14957gcv.b(this.c, ((Sts) obj).c);
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ MK(int i, byte b) {
|
|
this(i);
|
|
}
|
|
}
|