package c.i.e.s.b; /* compiled from: ErrorCorrectionLevel */ public enum f { L(1), M(0), Q(3), H(2); public static final f[] m; private final int bits; static { f fVar = L; f fVar2 = M; f fVar3 = Q; m = new f[]{fVar2, fVar, H, fVar3}; } public f(int i) { this.bits = i; } }