- 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
38 lines
705 B
Java
38 lines
705 B
Java
package com.fyber.inneractive.sdk.config.enums;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum Skip {
|
|
DEFAULT(-1),
|
|
_0(0),
|
|
_10(10),
|
|
_15(15),
|
|
_5(5);
|
|
|
|
private static final Map<Integer, Skip> CONSTANTS = new HashMap();
|
|
private final Integer value;
|
|
|
|
static {
|
|
for (Skip skip : values()) {
|
|
CONSTANTS.put(skip.value, skip);
|
|
}
|
|
}
|
|
|
|
Skip(Integer num) {
|
|
this.value = num;
|
|
}
|
|
|
|
public static Skip fromValue(Integer num) {
|
|
if (num == null) {
|
|
return null;
|
|
}
|
|
return CONSTANTS.get(num);
|
|
}
|
|
|
|
public Integer value() {
|
|
return this.value;
|
|
}
|
|
}
|