what-the-bank/sources/o/NW.java

76 lines
2.1 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class NW {
public String a;
public boolean b;
public String c;
public Boolean d;
public String e;
public /* synthetic */ NW(byte b) {
this(null, null, null, null, false);
}
public NW(Boolean bool, String str, String str2, String str3, boolean z) {
this.d = bool;
this.a = str;
this.e = str2;
this.c = str3;
this.b = z;
}
public final String toString() {
Boolean bool = this.d;
String str = this.a;
String str2 = this.e;
String str3 = this.c;
boolean z = this.b;
StringBuilder sb = new StringBuilder("SpouseInfoForm(citizenshipIsThai=");
sb.append(bool);
sb.append(", thaiFirstName=");
sb.append(str);
sb.append(", thaiLastName=");
sb.append(str2);
sb.append(", citizenId=");
sb.append(str3);
sb.append(", isMarried=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
Boolean bool = this.d;
int hashCode = bool == null ? 0 : bool.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.e;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.c;
int hashCode4 = str3 != null ? str3.hashCode() : 0;
boolean z = this.b;
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 NW)) {
return false;
}
NW nw = (NW) obj;
return C14957gcv.b(this.d, nw.d) && C14957gcv.b((Object) this.a, (Object) nw.a) && C14957gcv.b((Object) this.e, (Object) nw.e) && C14957gcv.b((Object) this.c, (Object) nw.c) && this.b == nw.b;
}
public NW() {
this((byte) 0);
}
}