72 lines
1.8 KiB
Java
72 lines
1.8 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class XI implements Parcelable {
|
||
|
public static final Parcelable.Creator<XI> CREATOR = new Parcelable.Creator<XI>() { // from class: o.XI.4
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ XI createFromParcel(Parcel parcel) {
|
||
|
return new XI(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ XI[] newArray(int i) {
|
||
|
return new XI[i];
|
||
|
}
|
||
|
};
|
||
|
public String a;
|
||
|
public String b;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public XI(String str, String str2) {
|
||
|
this.b = str;
|
||
|
this.a = str2;
|
||
|
}
|
||
|
|
||
|
protected XI(Parcel parcel) {
|
||
|
this.b = parcel.readString();
|
||
|
this.a = parcel.readString();
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.a);
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof XI)) {
|
||
|
return false;
|
||
|
}
|
||
|
XI xi = (XI) obj;
|
||
|
String str = this.b;
|
||
|
if (str == null ? xi.b != null : !str.equals(xi.b)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str2 = this.a;
|
||
|
if (str2 != null) {
|
||
|
return str2.equals(xi.a);
|
||
|
}
|
||
|
return xi.a == null;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
String str = this.b;
|
||
|
int hashCode = str != null ? str.hashCode() : 0;
|
||
|
String str2 = this.a;
|
||
|
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ XI() {
|
||
|
}
|
||
|
}
|