package com.google.j2objc.annotations;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/* JADX INFO: loaded from: classes.dex */
@Target({ElementType.TYPE, ElementType.PACKAGE})
@Documented
@Retention(RetentionPolicy.CLASS)
public @interface ReflectionSupport {

    /* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
    /* JADX WARN: Unknown enum class pattern. Please report as an issue! */
    public static final class Level {

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

        /* JADX INFO: renamed from: b, reason: collision with root package name */
        public static final /* synthetic */ Level[] f24301b;

        /* JADX INFO: Fake field, exist only in values array */
        Level EF0;

        static {
            Level level = new Level("NATIVE_ONLY", 0);
            Level level2 = new Level("FULL", 1);
            f24300a = level2;
            f24301b = new Level[]{level, level2};
        }

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

        public static Level[] values() {
            return (Level[]) f24301b.clone();
        }
    }

    Level value();
}
