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

71 lines
1.9 KiB
Java
Raw Normal View History

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