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

94 lines
2.6 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Sw, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0979Sw implements Parcelable {
public static final Parcelable.Creator<C0979Sw> CREATOR = new IeS();
public Long b;
public SG e;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public C0979Sw(SG sg, Long l) {
this.e = sg;
this.b = l;
}
private /* synthetic */ C0979Sw(byte b) {
this(null, null);
}
/* renamed from: o.Sw$IeS */
/* loaded from: classes3.dex */
public static final class IeS implements Parcelable.Creator<C0979Sw> {
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C0979Sw createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new C0979Sw(parcel.readInt() == 0 ? null : SG.CREATOR.createFromParcel(parcel), parcel.readInt() != 0 ? Long.valueOf(parcel.readLong()) : null);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C0979Sw[] newArray(int i) {
return new C0979Sw[i];
}
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
SG sg = this.e;
if (sg == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
sg.writeToParcel(parcel, i);
}
Long l = this.b;
if (l == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
parcel.writeLong(l.longValue());
}
}
public final String toString() {
SG sg = this.e;
Long l = this.b;
StringBuilder sb = new StringBuilder("NdidCommonConfirmationDisplay(remark=");
sb.append(sg);
sb.append(", expireTimeLeft=");
sb.append(l);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
SG sg = this.e;
int hashCode = sg == null ? 0 : sg.hashCode();
Long l = this.b;
return (hashCode * 31) + (l != null ? l.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0979Sw)) {
return false;
}
C0979Sw c0979Sw = (C0979Sw) obj;
return C14957gcv.b(this.e, c0979Sw.e) && C14957gcv.b(this.b, c0979Sw.b);
}
public C0979Sw() {
this((byte) 0);
}
}