73 lines
2.2 KiB
Java
73 lines
2.2 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class UM {
|
|
public final String a;
|
|
public boolean b;
|
|
public final String c;
|
|
public String d;
|
|
public final String e;
|
|
public final int i;
|
|
|
|
public UM(String str, String str2, String str3, int i, boolean z, String str4) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.e = str;
|
|
this.c = str2;
|
|
this.a = str3;
|
|
this.i = i;
|
|
this.b = z;
|
|
this.d = str4;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.c;
|
|
String str3 = this.a;
|
|
int i = this.i;
|
|
boolean z = this.b;
|
|
String str4 = this.d;
|
|
StringBuilder sb = new StringBuilder("AccountInboundDisplay(accountNo=");
|
|
sb.append(str);
|
|
sb.append(", productTypeCode=");
|
|
sb.append(str2);
|
|
sb.append(", productTypeDescription=");
|
|
sb.append(str3);
|
|
sb.append(", sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", isChecked=");
|
|
sb.append(z);
|
|
sb.append(", nickName=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
int hashCode = this.e.hashCode();
|
|
int hashCode2 = this.c.hashCode();
|
|
int hashCode3 = this.a.hashCode();
|
|
int hashCode4 = Integer.hashCode(this.i);
|
|
boolean z = this.b;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
String str = this.d;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + i) * 31) + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof UM)) {
|
|
return false;
|
|
}
|
|
UM um = (UM) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) um.e) && C14957gcv.b((Object) this.c, (Object) um.c) && C14957gcv.b((Object) this.a, (Object) um.a) && this.i == um.i && this.b == um.b && C14957gcv.b((Object) this.d, (Object) um.d);
|
|
}
|
|
}
|