- 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
51 lines
1.0 KiB
Java
51 lines
1.0 KiB
Java
package com.ironsource.adqualitysdk.sdk;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum ISAdQualityLogLevel {
|
|
NONE(0),
|
|
ERROR(1),
|
|
WARNING(2),
|
|
INFO(3),
|
|
DEBUG(4),
|
|
VERBOSE(5);
|
|
|
|
|
|
/* renamed from: ﻐ, reason: contains not printable characters */
|
|
private final int f34;
|
|
|
|
public static ISAdQualityLogLevel fromInt(int i) {
|
|
if (i == 0) {
|
|
return NONE;
|
|
}
|
|
if (i == 1) {
|
|
return ERROR;
|
|
}
|
|
if (i == 2) {
|
|
return WARNING;
|
|
}
|
|
if (i == 3) {
|
|
return INFO;
|
|
}
|
|
if (i == 4) {
|
|
return DEBUG;
|
|
}
|
|
if (i != 5) {
|
|
return null;
|
|
}
|
|
return VERBOSE;
|
|
}
|
|
|
|
public final int getValue() {
|
|
return this.f34;
|
|
}
|
|
|
|
ISAdQualityLogLevel(int i) {
|
|
this.f34 = i;
|
|
}
|
|
|
|
public final boolean shouldPrintLog(ISAdQualityLogLevel iSAdQualityLogLevel) {
|
|
int i = this.f34;
|
|
return i != NONE.f34 && i >= iSAdQualityLogLevel.f34;
|
|
}
|
|
}
|