package com.bumptech.glide.load;

/* 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 DecodeFormat {

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

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

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

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public static final /* synthetic */ DecodeFormat[] f5598d;

    static {
        DecodeFormat decodeFormat = new DecodeFormat("PREFER_ARGB_8888", 0);
        f5595a = decodeFormat;
        DecodeFormat decodeFormat2 = new DecodeFormat("PREFER_RGB_565", 1);
        f5596b = decodeFormat2;
        f5598d = new DecodeFormat[]{decodeFormat, decodeFormat2};
        f5597c = decodeFormat;
    }

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

    public static DecodeFormat[] values() {
        return (DecodeFormat[]) f5598d.clone();
    }
}
