package com.google.zxing;

/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
/* JADX INFO: loaded from: classes.dex */
public final class BarcodeFormat {
    public static final BarcodeFormat Q;
    public static final BarcodeFormat R;
    public static final BarcodeFormat S;
    public static final BarcodeFormat T;
    public static final /* synthetic */ BarcodeFormat[] U;

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public static final BarcodeFormat f24302a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public static final BarcodeFormat f24303b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public static final BarcodeFormat f24304c;

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public static final BarcodeFormat f24305d;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    public static final BarcodeFormat f24306e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    public static final BarcodeFormat f24307f;

    /* JADX INFO: renamed from: g, reason: collision with root package name */
    public static final BarcodeFormat f24308g;

    /* JADX INFO: renamed from: h, reason: collision with root package name */
    public static final BarcodeFormat f24309h;

    /* JADX INFO: renamed from: i, reason: collision with root package name */
    public static final BarcodeFormat f24310i;

    /* JADX INFO: renamed from: j, reason: collision with root package name */
    public static final BarcodeFormat f24311j;

    /* JADX INFO: renamed from: k, reason: collision with root package name */
    public static final BarcodeFormat f24312k;

    /* JADX INFO: renamed from: l, reason: collision with root package name */
    public static final BarcodeFormat f24313l;

    /* JADX INFO: renamed from: m, reason: collision with root package name */
    public static final BarcodeFormat f24314m;

    static {
        BarcodeFormat barcodeFormat = new BarcodeFormat("AZTEC", 0);
        f24302a = barcodeFormat;
        BarcodeFormat barcodeFormat2 = new BarcodeFormat("CODABAR", 1);
        f24303b = barcodeFormat2;
        BarcodeFormat barcodeFormat3 = new BarcodeFormat("CODE_39", 2);
        f24304c = barcodeFormat3;
        BarcodeFormat barcodeFormat4 = new BarcodeFormat("CODE_93", 3);
        f24305d = barcodeFormat4;
        BarcodeFormat barcodeFormat5 = new BarcodeFormat("CODE_128", 4);
        f24306e = barcodeFormat5;
        BarcodeFormat barcodeFormat6 = new BarcodeFormat("DATA_MATRIX", 5);
        f24307f = barcodeFormat6;
        BarcodeFormat barcodeFormat7 = new BarcodeFormat("EAN_8", 6);
        f24308g = barcodeFormat7;
        BarcodeFormat barcodeFormat8 = new BarcodeFormat("EAN_13", 7);
        f24309h = barcodeFormat8;
        BarcodeFormat barcodeFormat9 = new BarcodeFormat("ITF", 8);
        f24310i = barcodeFormat9;
        BarcodeFormat barcodeFormat10 = new BarcodeFormat("MAXICODE", 9);
        f24311j = barcodeFormat10;
        BarcodeFormat barcodeFormat11 = new BarcodeFormat("PDF_417", 10);
        f24312k = barcodeFormat11;
        BarcodeFormat barcodeFormat12 = new BarcodeFormat("QR_CODE", 11);
        f24313l = barcodeFormat12;
        BarcodeFormat barcodeFormat13 = new BarcodeFormat("RSS_14", 12);
        f24314m = barcodeFormat13;
        BarcodeFormat barcodeFormat14 = new BarcodeFormat("RSS_EXPANDED", 13);
        Q = barcodeFormat14;
        BarcodeFormat barcodeFormat15 = new BarcodeFormat("UPC_A", 14);
        R = barcodeFormat15;
        BarcodeFormat barcodeFormat16 = new BarcodeFormat("UPC_E", 15);
        S = barcodeFormat16;
        BarcodeFormat barcodeFormat17 = new BarcodeFormat("UPC_EAN_EXTENSION", 16);
        T = barcodeFormat17;
        U = new BarcodeFormat[]{barcodeFormat, barcodeFormat2, barcodeFormat3, barcodeFormat4, barcodeFormat5, barcodeFormat6, barcodeFormat7, barcodeFormat8, barcodeFormat9, barcodeFormat10, barcodeFormat11, barcodeFormat12, barcodeFormat13, barcodeFormat14, barcodeFormat15, barcodeFormat16, barcodeFormat17};
    }

    public static BarcodeFormat valueOf(String str) {
        return (BarcodeFormat) Enum.valueOf(BarcodeFormat.class, str);
    }

    public static BarcodeFormat[] values() {
        return (BarcodeFormat[]) U.clone();
    }
}
