package kotlin;

/* 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 */
@Metadata(d1 = {"\u0000\n\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0000\b\u0086\u0001\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001¨\u0006\u0002"}, d2 = {"Lkotlin/DeprecationLevel;", "", "kotlin-stdlib"}, k = 1, mv = {1, 8, 0})
public final class DeprecationLevel {

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

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

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

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

    static {
        DeprecationLevel deprecationLevel = new DeprecationLevel("WARNING", 0);
        f29178a = deprecationLevel;
        DeprecationLevel deprecationLevel2 = new DeprecationLevel("ERROR", 1);
        f29179b = deprecationLevel2;
        DeprecationLevel deprecationLevel3 = new DeprecationLevel("HIDDEN", 2);
        f29180c = deprecationLevel3;
        f29181d = new DeprecationLevel[]{deprecationLevel, deprecationLevel2, deprecationLevel3};
    }

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

    public static DeprecationLevel[] values() {
        return (DeprecationLevel[]) f29181d.clone();
    }
}
