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

78 lines
2.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Jp, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0566Jp extends EQ implements Parcelable {
public static final Parcelable.Creator<C0566Jp> CREATOR = new Parcelable.Creator<C0566Jp>() { // from class: o.Jp.4
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0566Jp createFromParcel(Parcel parcel) {
return new C0566Jp(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0566Jp[] newArray(int i) {
return new C0566Jp[i];
}
};
public String b;
public String c;
public String d;
@Override // o.EQ, android.os.Parcelable
public final int describeContents() {
return 0;
}
public C0566Jp(String str, String str2, String str3) {
this.b = str;
this.c = str2;
this.d = str3;
}
protected C0566Jp(Parcel parcel) {
this.b = parcel.readString();
this.c = parcel.readString();
this.d = parcel.readString();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
C0566Jp c0566Jp = (C0566Jp) obj;
String str = this.b;
if (str == null ? c0566Jp.b != null : !str.equals(c0566Jp.b)) {
return false;
}
String str2 = this.c;
if (str2 == null ? c0566Jp.c != null : !str2.equals(c0566Jp.c)) {
return false;
}
String str3 = this.d;
String str4 = c0566Jp.d;
return str3 != null ? str3.equals(str4) : str4 == null;
}
public final int hashCode() {
String str = this.b;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.c;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.d;
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
}
@Override // o.EQ, android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.b);
parcel.writeString(this.c);
parcel.writeString(this.d);
}
}