package f0;
/* JADX INFO: loaded from: classes.dex */
public enum e {
YES,
NO,
UNSET;
static /* synthetic */ class a {
/* JADX INFO: renamed from: a, reason: collision with root package name */
static final /* synthetic */ int[] f9379a;
static {
int[] iArr = new int[e.values().length];
f9379a = iArr;
try {
iArr[e.YES.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
f9379a[e.NO.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
try {
f9379a[e.UNSET.ordinal()] = 3;
} catch (NoSuchFieldError unused3) {
}
}
}
public static e c(boolean z3) {
return z3 ? YES : NO;
}
public boolean a() {
int i3 = a.f9379a[ordinal()];
if (i3 == 1) {
return true;
}
if (i3 == 2) {
return false;
}
if (i3 == 3) {
throw new IllegalStateException("No boolean equivalent for UNSET");
}
throw new IllegalStateException("Unrecognized TriState value: " + this);
}
public boolean b() {
return this != UNSET;
}
}
Download file