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

106 lines
3.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.Vd, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C1081Vd implements Parcelable, Comparable<C1081Vd> {
public static final Parcelable.Creator<C1081Vd> CREATOR = new Parcelable.Creator<C1081Vd>() { // from class: o.Vd.4
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C1081Vd createFromParcel(Parcel parcel) {
return new C1081Vd(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C1081Vd[] newArray(int i) {
return new C1081Vd[i];
}
};
public String a;
public String c;
public String d;
public String e;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
@Override // java.lang.Comparable
public final /* synthetic */ int compareTo(C1081Vd c1081Vd) {
C1081Vd c1081Vd2 = c1081Vd;
String str = this.d;
if (str == null) {
return 0;
}
long parseLong = Long.parseLong(str);
String str2 = c1081Vd2.d;
if (str2 != null) {
return Long.compare(parseLong, Long.parseLong(str2));
}
return 0;
}
public C1081Vd(String str, String str2, String str3, String str4) {
this.d = str;
this.e = str2;
this.a = str3;
this.c = str4;
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.d);
parcel.writeString(this.e);
parcel.writeString(this.a);
parcel.writeString(this.c);
}
protected C1081Vd(Parcel parcel) {
this.d = parcel.readString();
this.e = parcel.readString();
this.a = parcel.readString();
this.c = parcel.readString();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
C1081Vd c1081Vd = (C1081Vd) obj;
String str = this.d;
if (str == null ? c1081Vd.d == null : str.equals(c1081Vd.d)) {
String str2 = this.e;
if (str2 == null ? c1081Vd.e == null : str2.equals(c1081Vd.e)) {
String str3 = this.a;
if (str3 == null ? c1081Vd.a == null : str3.equals(c1081Vd.a)) {
String str4 = this.c;
if (str4 != null) {
if (str4.equals(c1081Vd.c)) {
return true;
}
} else if (c1081Vd.c == null) {
return true;
}
}
}
}
return false;
}
public final int hashCode() {
String str = this.d;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.e;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.a;
int hashCode3 = str3 != null ? str3.hashCode() : 0;
String str4 = this.c;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
}
}