Files
rr3-apk/decompiled/sources/com/ironsource/gh.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

58 lines
1.5 KiB
Java

package com.ironsource;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.SourceDebugExtension;
/* loaded from: classes2.dex */
public enum gh {
NonBidder(1),
Bidder(2),
NotSupported(-1);
public static final a b = new a(null);
private final int a;
@SourceDebugExtension({"SMAP\nInstanceType.kt\nKotlin\n*S Kotlin\n*F\n+ 1 InstanceType.kt\ncom/unity3d/ironsourceads/internal/load/InstanceType$Companion\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,24:1\n1#2:25\n*E\n"})
public static final class a {
private a() {
}
public /* synthetic */ a(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
public final gh a(int i) {
gh ghVar;
gh[] values = gh.values();
int length = values.length;
int i2 = 0;
while (true) {
if (i2 >= length) {
ghVar = null;
break;
}
ghVar = values[i2];
if (ghVar.a == i) {
break;
}
i2++;
}
return ghVar == null ? gh.NotSupported : ghVar;
}
}
gh(int i) {
this.a = i;
}
public final int b() {
return this.a;
}
public final boolean b(gh instanceType) {
Intrinsics.checkNotNullParameter(instanceType, "instanceType");
return instanceType.b() == this.a;
}
}