96 lines
2.8 KiB
Java
96 lines
2.8 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class RH implements Parcelable {
|
|
public static final Parcelable.Creator<RH> CREATOR = new IeS();
|
|
public final List<RJ> c;
|
|
public final int d;
|
|
public final boolean e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public RH(List<RJ> list, boolean z, int i) {
|
|
C14957gcv.e(list, "");
|
|
this.c = list;
|
|
this.e = z;
|
|
this.d = i;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS implements Parcelable.Creator<RH> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ RH createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
int readInt = parcel.readInt();
|
|
ArrayList arrayList = new ArrayList(readInt);
|
|
for (int i = 0; i != readInt; i++) {
|
|
arrayList.add(RJ.CREATOR.createFromParcel(parcel));
|
|
}
|
|
return new RH(arrayList, parcel.readInt() != 0, parcel.readInt());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ RH[] newArray(int i) {
|
|
return new RH[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
List<RJ> list = this.c;
|
|
parcel.writeInt(list.size());
|
|
Iterator<RJ> it = list.iterator();
|
|
while (it.hasNext()) {
|
|
it.next().writeToParcel(parcel, i);
|
|
}
|
|
parcel.writeInt(this.e ? 1 : 0);
|
|
parcel.writeInt(this.d);
|
|
}
|
|
|
|
public final String toString() {
|
|
List<RJ> list = this.c;
|
|
boolean z = this.e;
|
|
int i = this.d;
|
|
StringBuilder sb = new StringBuilder("ManageVerificationDisplay(itemLists=");
|
|
sb.append(list);
|
|
sb.append(", endOfListFlag=");
|
|
sb.append(z);
|
|
sb.append(", pagingNumber=");
|
|
sb.append(i);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
int hashCode = this.c.hashCode();
|
|
boolean z = this.e;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
return (((hashCode * 31) + i) * 31) + Integer.hashCode(this.d);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof RH)) {
|
|
return false;
|
|
}
|
|
RH rh = (RH) obj;
|
|
return C14957gcv.b(this.c, rh.c) && this.e == rh.e && this.d == rh.d;
|
|
}
|
|
}
|