52 lines
1.4 KiB
Java
52 lines
1.4 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.gson.Gson;
|
|
import com.google.gson.stream.JsonReader;
|
|
import com.google.gson.stream.JsonToken;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class EQ implements Parcelable {
|
|
public static final Parcelable.Creator<EQ> CREATOR = new Parcelable.Creator<EQ>() { // from class: o.EQ.5
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ EQ createFromParcel(Parcel parcel) {
|
|
return new EQ(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ EQ[] newArray(int i) {
|
|
return new EQ[i];
|
|
}
|
|
};
|
|
public boolean e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
protected EQ(Parcel parcel) {
|
|
this.e = parcel.readByte() != 0;
|
|
}
|
|
|
|
public EQ() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeByte(this.e ? (byte) 1 : (byte) 0);
|
|
}
|
|
|
|
public final /* synthetic */ void a(Gson gson, JsonReader jsonReader, int i) {
|
|
boolean z = jsonReader.peek() != JsonToken.NULL;
|
|
if (i != 677) {
|
|
jsonReader.skipValue();
|
|
} else if (z) {
|
|
this.e = ((Boolean) gson.getAdapter(Boolean.class).read2(jsonReader)).booleanValue();
|
|
} else {
|
|
jsonReader.nextNull();
|
|
}
|
|
}
|
|
}
|