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

49 lines
1.1 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 NzM implements oZe.LWm {
UNKNOWN_STATUS(0),
ENABLED(1),
DISABLED(2),
DESTROYED(3),
UNRECOGNIZED(-1);
public static final int DESTROYED_VALUE = 3;
public static final int DISABLED_VALUE = 2;
public static final int ENABLED_VALUE = 1;
public static final int UNKNOWN_STATUS_VALUE = 0;
private static final oZe.Sts<NzM> internalValueMap = new oZe.Sts<NzM>() { // from class: o.NzM.3
};
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.");
}
NzM(int i) {
this.value = i;
}
public static NzM a(int i) {
if (i == 0) {
return UNKNOWN_STATUS;
}
if (i == 1) {
return ENABLED;
}
if (i == 2) {
return DISABLED;
}
if (i != 3) {
return null;
}
return DESTROYED;
}
}