package kotlin.reflect.jvm.internal.impl.load.java;

import defpackage.hn2;
import defpackage.jn2;
import defpackage.kp6;
import defpackage.uz1;
import defpackage.vx8;

/* 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: classes3.dex */
public final class ReportLevel {
    private static final /* synthetic */ hn2 $ENTRIES;
    private static final /* synthetic */ ReportLevel[] $VALUES;

    @kp6
    public static final Companion Companion;

    @kp6
    private final String description;
    public static final ReportLevel IGNORE = new ReportLevel("IGNORE", 0, "ignore");
    public static final ReportLevel WARN = new ReportLevel("WARN", 1, "warn");
    public static final ReportLevel STRICT = new ReportLevel("STRICT", 2, "strict");

    @vx8
    public static final class Companion {
        public /* synthetic */ Companion(uz1 uz1Var) {
            this();
        }

        private Companion() {
        }
    }

    private static final /* synthetic */ ReportLevel[] $values() {
        return new ReportLevel[]{IGNORE, WARN, STRICT};
    }

    static {
        ReportLevel[] reportLevelArr$values = $values();
        $VALUES = reportLevelArr$values;
        $ENTRIES = jn2.a(reportLevelArr$values);
        Companion = new Companion(null);
    }

    private ReportLevel(String str, int i, String str2) {
        this.description = str2;
    }

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

    public static ReportLevel[] values() {
        return (ReportLevel[]) $VALUES.clone();
    }

    @kp6
    public final String getDescription() {
        return this.description;
    }

    public final boolean isIgnore() {
        return this == IGNORE;
    }

    public final boolean isWarning() {
        return this == WARN;
    }
}
