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

33 lines
640 B
Java

package o;
/* loaded from: classes3.dex */
public enum MZT {
CAR,
FIRE,
HEALTH,
NONE;
public static final Sts Companion = new Sts(0);
/* loaded from: classes3.dex */
public static final class Sts {
private Sts() {
}
public static MZT a(String str) {
if (str == null) {
return MZT.NONE;
}
try {
return MZT.valueOf(str);
} catch (IllegalArgumentException unused) {
return MZT.NONE;
}
}
public /* synthetic */ Sts(byte b) {
this();
}
}
}