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

134 lines
3.9 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/* loaded from: classes3.dex */
public final class ES implements Parcelable {
public static final Parcelable.Creator<ES> CREATOR = new Parcelable.Creator<ES>() { // from class: o.ES.4
@Override // android.os.Parcelable.Creator
public final /* synthetic */ ES createFromParcel(Parcel parcel) {
return new ES(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ ES[] newArray(int i) {
return new ES[i];
}
};
public List<EM> a;
public String b;
public String c;
public String d;
public YC e;
/* loaded from: classes3.dex */
public static final class IeS {
public YC a;
public String b;
public List<EM> c;
public String d;
public String e;
}
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
private ES(IeS ieS) {
this.a = ieS.c;
this.d = ieS.b;
this.c = ieS.e;
this.b = ieS.d;
this.e = ieS.a;
}
public static IeS a() {
return new IeS();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ES es = (ES) obj;
List<EM> list = this.a;
if (list == null ? es.a != null : !list.equals(es.a)) {
return false;
}
String str = this.d;
if (str == null ? es.d != null : !str.equals(es.d)) {
return false;
}
String str2 = this.c;
if (str2 == null ? es.c != null : !str2.equals(es.c)) {
return false;
}
YC yc = this.e;
if (yc == null ? es.e != null : !yc.equals(es.e)) {
return false;
}
String str3 = this.b;
String str4 = es.b;
return str3 != null ? str3.equals(str4) : str4 == null;
}
public final int hashCode() {
List<EM> list = this.a;
int hashCode = list != null ? list.hashCode() : 0;
String str = this.d;
int hashCode2 = str != null ? str.hashCode() : 0;
String str2 = this.c;
int hashCode3 = str2 != null ? str2.hashCode() : 0;
String str3 = this.b;
int hashCode4 = str3 != null ? str3.hashCode() : 0;
YC yc = this.e;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (yc != null ? yc.hashCode() : 0);
}
public final String toString() {
StringBuilder sb = new StringBuilder("PurchaseReviewDisplay{baseItemDisplayList=");
sb.append(Arrays.toString(this.a.toArray()));
sb.append(", additionalTextInfo='");
sb.append(this.d);
sb.append("', additionalConfirmInfo='");
sb.append(this.c);
sb.append("', additionalTextInfoForSlip='");
sb.append(this.b);
sb.append("', warningCriminalsDisplay='");
sb.append(this.e);
sb.append("'}");
return sb.toString();
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeList(this.a);
parcel.writeString(this.d);
parcel.writeString(this.c);
parcel.writeString(this.b);
parcel.writeParcelable(this.e, i);
}
protected ES(Parcel parcel) {
ArrayList arrayList = new ArrayList();
this.a = arrayList;
parcel.readList(arrayList, EM.class.getClassLoader());
this.d = parcel.readString();
this.c = parcel.readString();
this.b = parcel.readString();
this.e = (YC) parcel.readParcelable(YC.class.getClassLoader());
}
public /* synthetic */ ES(IeS ieS, byte b) {
this(ieS);
}
}