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

86 lines
2.5 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public class VT extends EQ implements Parcelable {
public static final Parcelable.Creator<VT> CREATOR = new Parcelable.Creator<VT>() { // from class: o.VT.1
@Override // android.os.Parcelable.Creator
public final /* synthetic */ VT createFromParcel(Parcel parcel) {
return new VT(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ VT[] newArray(int i) {
return new VT[0];
}
};
public String a;
private String b;
private String c;
private String d;
@Override // o.EQ, android.os.Parcelable
public int describeContents() {
return 0;
}
public VT(Parcel parcel) {
this.c = parcel.readString();
this.a = parcel.readString();
this.b = parcel.readString();
this.d = parcel.readString();
}
public VT(String str, String str2, String str3, String str4) {
this.c = str;
this.a = str2;
this.b = str3;
this.d = str4;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
VT vt = (VT) obj;
if (this.a != vt.a) {
return false;
}
String str = this.c;
if (str == null ? vt.c != null : !str.equals(vt.c)) {
return false;
}
String str2 = this.b;
if (str2 == null ? vt.b != null : !str2.equals(vt.b)) {
return false;
}
String str3 = this.d;
String str4 = vt.d;
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.a;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.b;
int hashCode3 = str3 != null ? str3.hashCode() : 0;
String str4 = this.d;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
}
@Override // o.EQ, android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.c);
parcel.writeString(this.a);
parcel.writeString(this.b);
parcel.writeString(this.d);
}
}