65 lines
1.6 KiB
Java
65 lines
1.6 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class XW implements Parcelable {
|
||
|
public static final Parcelable.Creator<XW> CREATOR = new Parcelable.Creator<XW>() { // from class: o.XW.5
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ XW createFromParcel(Parcel parcel) {
|
||
|
return new XW(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ XW[] newArray(int i) {
|
||
|
return new XW[i];
|
||
|
}
|
||
|
};
|
||
|
private static String a = "QR_PURCHASE_VISA_SOURCE";
|
||
|
private static String b = "PURCHASE_POINT_SOURCE";
|
||
|
private static String c = "QR_PURCHASE_MC_SOURCE";
|
||
|
public String e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public XW(String str) {
|
||
|
this.e = str;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
String str = this.e;
|
||
|
String str2 = ((XW) obj).e;
|
||
|
return str != null ? str.equals(str2) : str2 == null;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
String str = this.e;
|
||
|
if (str != null) {
|
||
|
return str.hashCode();
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.e);
|
||
|
}
|
||
|
|
||
|
protected XW(Parcel parcel) {
|
||
|
this.e = parcel.readString();
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ XW() {
|
||
|
}
|
||
|
}
|