NetMirror.apk
Download file
package com.facebook.yoga;
/* JADX INFO: loaded from: classes.dex */
public enum YogaLogLevel {
ERROR(0),
WARN(1),
INFO(2),
DEBUG(3),
VERBOSE(4),
FATAL(5);
/* JADX INFO: renamed from: b, reason: collision with root package name */
private final int f8278b;
YogaLogLevel(int i3) {
this.f8278b = i3;
}
public static YogaLogLevel fromInt(int i3) {
if (i3 == 0) {
return ERROR;
}
if (i3 == 1) {
return WARN;
}
if (i3 == 2) {
return INFO;
}
if (i3 == 3) {
return DEBUG;
}
if (i3 == 4) {
return VERBOSE;
}
if (i3 == 5) {
return FATAL;
}
throw new IllegalArgumentException("Unknown enum value: " + i3);
}
}
⚠️ This content was hidden by an advertisement filtering extension in your browser. Please disable it and reload the page to access the decompiled content.
We only display one small text ad to keep this service free. Here's what it looks like:
Read the Docs for Business: You write the docs. We do the rest.
Try it today!Ad by EthicalAds
Download file