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

94 lines
2.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class UT extends UV {
public static final Parcelable.Creator<UT> CREATOR = new Parcelable.Creator<UT>() { // from class: o.UT.5
@Override // android.os.Parcelable.Creator
public final /* synthetic */ UT createFromParcel(Parcel parcel) {
return new UT(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ UT[] newArray(int i) {
return new UT[i];
}
};
public String b;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
private UT(Sts sts) {
this.r = sts.a;
this.s = sts.b;
this.b = sts.d;
}
public static Sts a() {
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.b;
String str2 = ((UT) obj).b;
if (str != null) {
if (!str.equals(str2)) {
return true;
}
} else if (str2 != null) {
return true;
}
return false;
}
public final int hashCode() {
String str = this.b;
if (str != null) {
return str.hashCode();
}
return 0;
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.b);
parcel.writeByte(this.r ? (byte) 1 : (byte) 0);
parcel.writeInt(this.s);
}
protected UT(Parcel parcel) {
this.b = parcel.readString();
this.r = parcel.readByte() != 0;
this.s = parcel.readInt();
}
/* loaded from: classes3.dex */
public static final class Sts {
boolean a;
public int b;
public String d;
private Sts() {
}
/* synthetic */ Sts(byte b) {
this();
}
}
public /* synthetic */ UT(Sts sts, byte b) {
this(sts);
}
}