88 lines
2.7 KiB
Java
88 lines
2.7 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* renamed from: o.Fl, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C0388Fl implements Parcelable {
|
|
public static final Parcelable.Creator<C0388Fl> CREATOR = new Parcelable.Creator<C0388Fl>() { // from class: o.Fl.3
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ C0388Fl createFromParcel(Parcel parcel) {
|
|
return new C0388Fl(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ C0388Fl[] newArray(int i) {
|
|
return new C0388Fl[i];
|
|
}
|
|
};
|
|
public String b;
|
|
public String c;
|
|
public String d;
|
|
public String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public C0388Fl(String str, String str2, String str3, String str4) {
|
|
this.d = str;
|
|
this.c = str2;
|
|
this.e = str3;
|
|
this.b = str4;
|
|
}
|
|
|
|
protected C0388Fl(Parcel parcel) {
|
|
this.d = parcel.readString();
|
|
this.c = parcel.readString();
|
|
this.e = parcel.readString();
|
|
this.b = parcel.readString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.b);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
C0388Fl c0388Fl = (C0388Fl) obj;
|
|
String str = this.d;
|
|
if (str == null ? c0388Fl.d != null : !str.equals(c0388Fl.d)) {
|
|
return false;
|
|
}
|
|
String str2 = this.c;
|
|
if (str2 == null ? c0388Fl.c != null : !str2.equals(c0388Fl.c)) {
|
|
return false;
|
|
}
|
|
String str3 = this.e;
|
|
if (str3 == null ? c0388Fl.e != null : !str3.equals(c0388Fl.e)) {
|
|
return false;
|
|
}
|
|
String str4 = this.b;
|
|
String str5 = c0388Fl.b;
|
|
return str4 != null ? str4.equals(str5) : str5 == null;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.c;
|
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
|
String str3 = this.e;
|
|
int hashCode3 = str3 != null ? str3.hashCode() : 0;
|
|
String str4 = this.b;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
|
}
|
|
}
|