- 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
58 lines
1.5 KiB
Java
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;
|
|
}
|
|
}
|