- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.");
|
|
}
|
|
}
|