- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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;
|
|
}
|
|
}
|