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

81 lines
2.3 KiB
Java
Raw Normal View History

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