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

90 lines
2.1 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class UW extends UV {
public static final Parcelable.Creator<UW> CREATOR = new Parcelable.Creator<UW>() { // from class: o.UW.4
@Override // android.os.Parcelable.Creator
public final /* synthetic */ UW createFromParcel(Parcel parcel) {
return new UW(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ UW[] newArray(int i) {
return new UW[i];
}
};
public String d;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
private UW(Sts sts) {
this.r = sts.d;
this.s = sts.a;
this.d = sts.b;
}
public static Sts c() {
return new Sts((byte) 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
String str = this.d;
String str2 = ((UW) obj).d;
return str != null ? str.equals(str2) : str2 == null;
}
public final int hashCode() {
String str = this.d;
if (str != null) {
return str.hashCode();
}
return 0;
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.d);
parcel.writeByte(this.r ? (byte) 1 : (byte) 0);
parcel.writeInt(this.s);
}
public UW() {
}
protected UW(Parcel parcel) {
this.d = parcel.readString();
this.r = parcel.readByte() != 0;
this.s = parcel.readInt();
}
/* loaded from: classes3.dex */
public static final class Sts {
public int a;
public String b;
boolean d;
private Sts() {
}
/* synthetic */ Sts(byte b) {
this();
}
}
public /* synthetic */ UW(Sts sts, byte b) {
this(sts);
}
}