what-the-bank/sources/o/Umh.java

54 lines
1.2 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import o.oZe;
/* loaded from: classes2.dex */
public enum Umh implements oZe.LWm {
UNKNOWN_PREFIX(0),
TINK(1),
LEGACY(2),
RAW(3),
CRUNCHY(4),
UNRECOGNIZED(-1);
public static final int CRUNCHY_VALUE = 4;
public static final int LEGACY_VALUE = 2;
public static final int RAW_VALUE = 3;
public static final int TINK_VALUE = 1;
public static final int UNKNOWN_PREFIX_VALUE = 0;
private static final oZe.Sts<Umh> internalValueMap = new oZe.Sts<Umh>() { // from class: o.Umh.5
};
public final int value;
@Override // o.oZe.LWm
public final int a() {
if (this != UNRECOGNIZED) {
return this.value;
}
throw new IllegalArgumentException("Can't get the number of an unknown enum value.");
}
Umh(int i) {
this.value = i;
}
public static Umh b(int i) {
if (i == 0) {
return UNKNOWN_PREFIX;
}
if (i == 1) {
return TINK;
}
if (i == 2) {
return LEGACY;
}
if (i == 3) {
return RAW;
}
if (i != 4) {
return null;
}
return CRUNCHY;
}
}