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

88 lines
2.7 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Gx, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0453Gx implements Parcelable {
public static final Parcelable.Creator<C0453Gx> CREATOR = new RVV();
public String b;
public String d;
public boolean e;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public C0453Gx(boolean z, String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.e = z;
this.d = str;
this.b = str2;
}
/* renamed from: o.Gx$RVV */
/* loaded from: classes3.dex */
public static final class RVV implements Parcelable.Creator<C0453Gx> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0453Gx createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new C0453Gx(parcel.readInt() != 0, parcel.readString(), parcel.readString());
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0453Gx[] newArray(int i) {
return new C0453Gx[i];
}
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeInt(this.e ? 1 : 0);
parcel.writeString(this.d);
parcel.writeString(this.b);
}
public final String toString() {
boolean z = this.e;
String str = this.d;
String str2 = this.b;
StringBuilder sb = new StringBuilder("LimitInfoDisplay(isCDXSetCreditLimit=");
sb.append(z);
sb.append(", headerLabel=");
sb.append(str);
sb.append(", content=");
sb.append(str2);
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: r0v6 */
/* JADX WARN: Type inference failed for: r0v7 */
public final int hashCode() {
boolean z = this.e;
?? r0 = z;
if (z) {
r0 = 1;
}
return (((r0 * 31) + this.d.hashCode()) * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0453Gx)) {
return false;
}
C0453Gx c0453Gx = (C0453Gx) obj;
return this.e == c0453Gx.e && C14957gcv.b((Object) this.d, (Object) c0453Gx.d) && C14957gcv.b((Object) this.b, (Object) c0453Gx.b);
}
}