56 lines
1.6 KiB
Java
56 lines
1.6 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* renamed from: o.Jv, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C0575Jv implements Parcelable {
|
|
public static final Parcelable.Creator<C0575Jv> CREATOR = new Parcelable.Creator<C0575Jv>() { // from class: o.Jv.3
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ C0575Jv createFromParcel(Parcel parcel) {
|
|
return new C0575Jv(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ C0575Jv[] newArray(int i) {
|
|
return new C0575Jv[i];
|
|
}
|
|
};
|
|
public String a;
|
|
public String b;
|
|
public String c;
|
|
public String d;
|
|
public boolean e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public C0575Jv(String str, String str2, String str3, String str4, boolean z) {
|
|
this.d = str;
|
|
this.a = str2;
|
|
this.c = str3;
|
|
this.b = str4;
|
|
this.e = z;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.b);
|
|
parcel.writeByte(this.e ? (byte) 1 : (byte) 0);
|
|
}
|
|
|
|
protected C0575Jv(Parcel parcel) {
|
|
this.a = parcel.readString();
|
|
this.d = parcel.readString();
|
|
this.c = parcel.readString();
|
|
this.b = parcel.readString();
|
|
this.e = parcel.readByte() == 1;
|
|
}
|
|
}
|