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;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class zaa extends AbstractSafeParcelable {
|
||
|
public static final Parcelable.Creator<zaa> CREATOR = new zab();
|
||
|
final int zaa;
|
||
|
private final StringToIntConverter zab;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public zaa(int i, StringToIntConverter stringToIntConverter) {
|
||
|
this.zaa = i;
|
||
|
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.");
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||
|
SafeParcelWriter.writeInt(parcel, 1, this.zaa);
|
||
|
SafeParcelWriter.writeParcelable(parcel, 2, this.zab, i, false);
|
||
|
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|