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

85 lines
2.0 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public class QP extends EM implements Parcelable {
public static final Parcelable.Creator<QP> CREATOR = new Parcelable.Creator<QP>() { // from class: o.QP.4
@Override // android.os.Parcelable.Creator
public final /* synthetic */ QP createFromParcel(Parcel parcel) {
return new QP(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ QP[] newArray(int i) {
return new QP[i];
}
};
public String c;
@Override // o.EM, android.os.Parcelable
public int describeContents() {
return 0;
}
protected QP(Parcel parcel) {
super(parcel);
this.c = parcel.readString();
}
public static Sts a() {
return new Sts(YD.REMARK);
}
@Override // o.EM
public final void UU_(Parcel parcel, int i) {
parcel.writeString(this.c);
}
/* loaded from: classes3.dex */
public static class Sts<T extends Sts<T>> {
YD b;
public String c;
public Sts(YD yd) {
this.b = yd;
}
}
@Override // o.EM
public String toString() {
StringBuilder sb = new StringBuilder("ItemRemarkCustomDisplay{content='");
sb.append(this.c);
sb.append("'}");
return sb.toString();
}
@Override // o.EM
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass() || !super.equals(obj)) {
return false;
}
String str = this.c;
String str2 = ((QP) obj).c;
return str != null ? str.equals(str2) : str2 == null;
}
@Override // o.EM
public int hashCode() {
String str = this.c;
if (str != null) {
return str.hashCode();
}
return 0;
}
public QP(Sts<?> sts) {
super(sts.b);
this.c = sts.c;
}
}