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

116 lines
3.5 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class JE implements Parcelable {
public static final HBt CREATOR = new HBt(0);
public final boolean a;
public final String b;
public final boolean c;
public final String d;
public final String e;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public JE(boolean z, boolean z2, String str, String str2, String str3) {
this.a = z;
this.c = z2;
this.e = str;
this.b = str2;
this.d = str3;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public JE(Parcel parcel) {
this(parcel.readByte() != 0, parcel.readByte() != 0, parcel.readString(), parcel.readString(), parcel.readString());
C14957gcv.e(parcel, "");
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeByte(this.a ? (byte) 1 : (byte) 0);
parcel.writeByte(this.c ? (byte) 1 : (byte) 0);
parcel.writeString(this.e);
parcel.writeString(this.b);
parcel.writeString(this.d);
}
/* loaded from: classes3.dex */
public static final class HBt implements Parcelable.Creator<JE> {
private HBt() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ JE createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new JE(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ JE[] newArray(int i) {
return new JE[i];
}
public /* synthetic */ HBt(byte b) {
this();
}
}
public final String toString() {
boolean z = this.a;
boolean z2 = this.c;
String str = this.e;
String str2 = this.b;
String str3 = this.d;
StringBuilder sb = new StringBuilder("DirectDebitTextDisplay(isVisible=");
sb.append(z);
sb.append(", isEditable=");
sb.append(z2);
sb.append(", labelText=");
sb.append(str);
sb.append(", placeHolder=");
sb.append(str2);
sb.append(", text=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v10 */
/* JADX WARN: Type inference failed for: r0v11 */
public final int hashCode() {
boolean z = this.a;
?? r0 = z;
if (z) {
r0 = 1;
}
boolean z2 = this.c;
int i = z2 ? 1 : z2 ? 1 : 0;
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.d;
return (((((((r0 * 31) + i) * 31) + hashCode) * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof JE)) {
return false;
}
JE je = (JE) obj;
return this.a == je.a && this.c == je.c && C14957gcv.b((Object) this.e, (Object) je.e) && C14957gcv.b((Object) this.b, (Object) je.b) && C14957gcv.b((Object) this.d, (Object) je.d);
}
}