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

87 lines
2.5 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Fh, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0380Fh extends EQ implements Parcelable {
public static final Parcelable.Creator<C0380Fh> CREATOR = new Parcelable.Creator<C0380Fh>() { // from class: o.Fh.1
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0380Fh createFromParcel(Parcel parcel) {
return new C0380Fh(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0380Fh[] newArray(int i) {
return new C0380Fh[i];
}
};
public String a;
public String b;
public int c;
public String d;
@Override // o.EQ, android.os.Parcelable
public final int describeContents() {
return 0;
}
public static C0380Fh c() {
return new C0380Fh();
}
@Override // o.EQ, android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.b);
parcel.writeString(this.d);
parcel.writeInt(this.c);
parcel.writeString(this.a);
}
public C0380Fh() {
}
protected C0380Fh(Parcel parcel) {
this.b = parcel.readString();
this.d = parcel.readString();
this.c = parcel.readInt();
this.a = parcel.readString();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0380Fh)) {
return false;
}
C0380Fh c0380Fh = (C0380Fh) obj;
if (this.c != c0380Fh.c) {
return false;
}
String str = this.b;
if (str == null ? c0380Fh.b != null : !str.equals(c0380Fh.b)) {
return false;
}
String str2 = this.d;
if (str2 == null ? c0380Fh.d != null : !str2.equals(c0380Fh.d)) {
return false;
}
String str3 = this.a;
if (str3 != null) {
return str3.equals(c0380Fh.a);
}
return c0380Fh.a == null;
}
public final int hashCode() {
String str = this.b;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.d;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.a;
return (((((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0)) * 31) + this.c;
}
}