- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
50 lines
1.0 KiB
Java
50 lines
1.0 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum zzgtp implements zzgxv {
|
|
UNKNOWN_PREFIX(0),
|
|
TINK(1),
|
|
LEGACY(2),
|
|
RAW(3),
|
|
CRUNCHY(4),
|
|
UNRECOGNIZED(-1);
|
|
|
|
private final int zzh;
|
|
|
|
zzgtp(int i) {
|
|
this.zzh = i;
|
|
}
|
|
|
|
public static zzgtp zzb(int i) {
|
|
if (i == 0) {
|
|
return UNKNOWN_PREFIX;
|
|
}
|
|
if (i == 1) {
|
|
return TINK;
|
|
}
|
|
if (i == 2) {
|
|
return LEGACY;
|
|
}
|
|
if (i == 3) {
|
|
return RAW;
|
|
}
|
|
if (i != 4) {
|
|
return null;
|
|
}
|
|
return CRUNCHY;
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public final String toString() {
|
|
return Integer.toString(zza());
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.ads.zzgxv
|
|
public final int zza() {
|
|
if (this != UNRECOGNIZED) {
|
|
return this.zzh;
|
|
}
|
|
throw new IllegalArgumentException("Can't get the number of an unknown enum value.");
|
|
}
|
|
}
|