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