129 lines
3.2 KiB
Java
129 lines
3.2 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class FJ implements Parcelable {
|
||
|
public static final Parcelable.Creator<FJ> CREATOR = new Parcelable.Creator<FJ>() { // from class: o.FJ.5
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ FJ createFromParcel(Parcel parcel) {
|
||
|
return new FJ(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ FJ[] newArray(int i) {
|
||
|
return new FJ[i];
|
||
|
}
|
||
|
};
|
||
|
public String a;
|
||
|
public String b;
|
||
|
public String c;
|
||
|
public String d;
|
||
|
public String e;
|
||
|
public int f;
|
||
|
public String g;
|
||
|
public boolean h;
|
||
|
public int i;
|
||
|
public String j;
|
||
|
public String k;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
protected FJ(Parcel parcel) {
|
||
|
this.h = false;
|
||
|
this.e = parcel.readString();
|
||
|
this.a = parcel.readString();
|
||
|
this.d = parcel.readString();
|
||
|
this.f = parcel.readInt();
|
||
|
this.j = parcel.readString();
|
||
|
this.b = parcel.readString();
|
||
|
this.k = parcel.readString();
|
||
|
this.g = parcel.readString();
|
||
|
this.c = parcel.readString();
|
||
|
this.i = parcel.readInt();
|
||
|
this.h = parcel.readByte() != 0;
|
||
|
}
|
||
|
|
||
|
private FJ(LWm lWm) {
|
||
|
this.h = false;
|
||
|
this.a = lWm.a;
|
||
|
this.d = lWm.d;
|
||
|
this.e = lWm.b;
|
||
|
this.f = lWm.i;
|
||
|
this.j = lWm.c;
|
||
|
this.b = lWm.h;
|
||
|
this.k = lWm.k;
|
||
|
this.g = lWm.g;
|
||
|
this.c = lWm.e;
|
||
|
this.i = lWm.j;
|
||
|
boolean z = lWm.f;
|
||
|
this.h = false;
|
||
|
}
|
||
|
|
||
|
public static LWm d() {
|
||
|
return new LWm((byte) 0);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.e);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeInt(this.f);
|
||
|
parcel.writeString(this.j);
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.k);
|
||
|
parcel.writeString(this.g);
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeInt(this.i);
|
||
|
parcel.writeByte(this.h ? (byte) 1 : (byte) 0);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class LWm {
|
||
|
public String a;
|
||
|
public String b;
|
||
|
public String c;
|
||
|
public String d;
|
||
|
public String e;
|
||
|
boolean f;
|
||
|
public String g;
|
||
|
public String h;
|
||
|
public int i;
|
||
|
public int j;
|
||
|
public String k;
|
||
|
|
||
|
private LWm() {
|
||
|
this.j = 1;
|
||
|
}
|
||
|
|
||
|
/* synthetic */ LWm(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
String str = this.j;
|
||
|
String str2 = ((FJ) obj).j;
|
||
|
return str != null ? str.equals(str2) : str2 == null;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
return this.j.hashCode() + 527;
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ FJ(LWm lWm, byte b) {
|
||
|
this(lWm);
|
||
|
}
|
||
|
}
|