96 lines
2.9 KiB
Java
96 lines
2.9 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class VE implements Parcelable {
|
||
|
public static final Parcelable.Creator<VE> CREATOR = new LWm();
|
||
|
public final String a;
|
||
|
private final String b;
|
||
|
public final String d;
|
||
|
public final String e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public VE(String str, String str2, String str3, String str4) {
|
||
|
this.d = str;
|
||
|
this.b = str2;
|
||
|
this.a = str3;
|
||
|
this.e = str4;
|
||
|
}
|
||
|
|
||
|
private /* synthetic */ VE(byte b) {
|
||
|
this(null, null, null, null);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class LWm implements Parcelable.Creator<VE> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ VE createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new VE(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ VE[] newArray(int i) {
|
||
|
return new VE[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.e);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.b;
|
||
|
String str3 = this.a;
|
||
|
String str4 = this.e;
|
||
|
StringBuilder sb = new StringBuilder("TransferMethodDisplay(type=");
|
||
|
sb.append(str);
|
||
|
sb.append(", name=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", placeholder=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", remarkMobile=");
|
||
|
sb.append(str4);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.d;
|
||
|
int hashCode = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.b;
|
||
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
||
|
String str3 = this.a;
|
||
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
||
|
String str4 = this.e;
|
||
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof VE)) {
|
||
|
return false;
|
||
|
}
|
||
|
VE ve = (VE) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) ve.d) && C14957gcv.b((Object) this.b, (Object) ve.b) && C14957gcv.b((Object) this.a, (Object) ve.a) && C14957gcv.b((Object) this.e, (Object) ve.e);
|
||
|
}
|
||
|
|
||
|
public VE() {
|
||
|
this((byte) 0);
|
||
|
}
|
||
|
}
|