package o; /* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */ /* JADX WARN: Found several "values" enum fields: [] */ /* loaded from: classes.dex */ public final class FVz { private static final FVz[] $VALUES; private static final FVz[] FOR_BITS; public static final FVz H; public static final FVz L; public static final FVz M; public static final FVz Q; public final int bits; public static FVz valueOf(String str) { return (FVz) Enum.valueOf(FVz.class, str); } public static FVz[] values() { return (FVz[]) $VALUES.clone(); } static { FVz fVz = new FVz("L", 0, 1); L = fVz; FVz fVz2 = new FVz("M", 1, 0); M = fVz2; FVz fVz3 = new FVz("Q", 2, 3); Q = fVz3; FVz fVz4 = new FVz("H", 3, 2); H = fVz4; $VALUES = new FVz[]{fVz, fVz2, fVz3, fVz4}; FOR_BITS = new FVz[]{fVz2, fVz, fVz4, fVz3}; } private FVz(String str, int i, int i2) { this.bits = i2; } public static FVz e(int i) { if (i >= 0) { FVz[] fVzArr = FOR_BITS; if (i < fVzArr.length) { return fVzArr[i]; } } throw new IllegalArgumentException(); } }