- 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
40 lines
963 B
Java
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;
|
|
}
|
|
}
|