49 lines
1.9 KiB
Java
49 lines
1.9 KiB
Java
package com.google.android.gms.common.server.converter;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
|
import com.google.android.gms.common.server.response.FastJsonResponse;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class zaa extends AbstractSafeParcelable {
|
|
public static final Parcelable.Creator<zaa> CREATOR = new zab();
|
|
final int zaa;
|
|
private final StringToIntConverter zab;
|
|
|
|
zaa(int i, StringToIntConverter stringToIntConverter) {
|
|
this.zaa = i;
|
|
this.zab = stringToIntConverter;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
int i2 = this.zaa;
|
|
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
|
SafeParcelWriter.writeInt(parcel, 1, i2);
|
|
SafeParcelWriter.writeParcelable(parcel, 2, this.zab, i, false);
|
|
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
|
}
|
|
|
|
public final FastJsonResponse.FieldConverter zab() {
|
|
StringToIntConverter stringToIntConverter = this.zab;
|
|
if (stringToIntConverter != null) {
|
|
return stringToIntConverter;
|
|
}
|
|
throw new IllegalStateException("There was no converter wrapped in this ConverterWrapper.");
|
|
}
|
|
|
|
private zaa(StringToIntConverter stringToIntConverter) {
|
|
this.zaa = 1;
|
|
this.zab = stringToIntConverter;
|
|
}
|
|
|
|
public static zaa zaa(FastJsonResponse.FieldConverter fieldConverter) {
|
|
if (fieldConverter instanceof StringToIntConverter) {
|
|
return new zaa((StringToIntConverter) fieldConverter);
|
|
}
|
|
throw new IllegalArgumentException("Unsupported safe parcelable field converter class.");
|
|
}
|
|
} |