Files
rr3-apk/decompiled/sources/com/fyber/inneractive/sdk/util/h.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

40 lines
963 B
Java

package com.fyber.inneractive.sdk.util;
import java.util.Locale;
/* loaded from: classes2.dex */
public enum h {
DISPLAY("DISPLAY"),
VIDEO_CTA("VIDEO_CTA"),
VIDEO_CLICK("VIDEO_CLICK"),
VAST_ENDCARD("VAST_ENDCARD"),
DEFAULT_ENDCARD("DEFAULT_ENDCARD"),
VIDEO_APP_INFO("VIDEO_APP_INFO"),
FMP_ENDCARD("FMP_ENDCARD");
private final String key;
private String mVersion = "";
private int mOrderShown = 0;
h(String str) {
this.key = str;
}
public final void a(int i) {
this.mOrderShown = i;
}
public final void a(String str) {
this.mVersion = str;
}
public final String e() {
return this.mVersion;
}
@Override // java.lang.Enum
public final String toString() {
return ((this == FMP_ENDCARD && this.mOrderShown == 1) || this.mOrderShown == 2) ? String.format(Locale.US, "%s_%d", this.key, Integer.valueOf(this.mOrderShown)) : this.key;
}
}