- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
52 lines
1.1 KiB
Java
52 lines
1.1 KiB
Java
package com.ironsource.adqualitysdk.sdk;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum ISAdQualityMediationNetwork {
|
|
UNKNOWN(-1),
|
|
ADMOB(0),
|
|
DT_FAIR_BID(1),
|
|
HELIUM(2),
|
|
LEVEL_PLAY(3),
|
|
MAX(4),
|
|
UNITY(5),
|
|
SELF_MEDIATED(6),
|
|
OTHER(7);
|
|
|
|
|
|
/* renamed from: メ, reason: contains not printable characters */
|
|
private final int f36;
|
|
|
|
public static ISAdQualityMediationNetwork fromInt(int i) {
|
|
switch (i) {
|
|
case -1:
|
|
return UNKNOWN;
|
|
case 0:
|
|
return ADMOB;
|
|
case 1:
|
|
return DT_FAIR_BID;
|
|
case 2:
|
|
return HELIUM;
|
|
case 3:
|
|
return LEVEL_PLAY;
|
|
case 4:
|
|
return MAX;
|
|
case 5:
|
|
return UNITY;
|
|
case 6:
|
|
return SELF_MEDIATED;
|
|
case 7:
|
|
return OTHER;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public final int getValue() {
|
|
return this.f36;
|
|
}
|
|
|
|
ISAdQualityMediationNetwork(int i) {
|
|
this.f36 = i;
|
|
}
|
|
}
|