- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
42 lines
896 B
Java
42 lines
896 B
Java
package com.fyber.inneractive.sdk.config.enums;
|
|
|
|
import android.text.TextUtils;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum Track {
|
|
ERRORS("errors"),
|
|
NETWORKING("networking"),
|
|
VIEWABILITY("viewability");
|
|
|
|
private static final Map<String, Track> CONSTANTS = new HashMap();
|
|
private final String stringValue;
|
|
|
|
static {
|
|
for (Track track : values()) {
|
|
CONSTANTS.put(track.stringValue, track);
|
|
}
|
|
}
|
|
|
|
Track(String str) {
|
|
this.stringValue = str;
|
|
}
|
|
|
|
public static Track fromValue(String str) {
|
|
if (TextUtils.isEmpty(str)) {
|
|
return null;
|
|
}
|
|
return CONSTANTS.get(str);
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return this.stringValue;
|
|
}
|
|
|
|
public String value() {
|
|
return this.stringValue;
|
|
}
|
|
}
|