35 lines
784 B
Java
35 lines
784 B
Java
package o;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.ANNOTATION_TYPE, ElementType.TYPE})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
/* renamed from: o.ajm, reason: case insensitive filesystem */
|
|
/* loaded from: classes.dex */
|
|
public @interface InterfaceC2713ajm {
|
|
|
|
/* renamed from: o.ajm$HBt */
|
|
/* loaded from: classes.dex */
|
|
public enum HBt {
|
|
ANY,
|
|
NON_PRIVATE,
|
|
PROTECTED_AND_PUBLIC,
|
|
PUBLIC_ONLY,
|
|
NONE,
|
|
DEFAULT
|
|
}
|
|
|
|
HBt a() default HBt.DEFAULT;
|
|
|
|
HBt b() default HBt.DEFAULT;
|
|
|
|
HBt c() default HBt.DEFAULT;
|
|
|
|
HBt d() default HBt.DEFAULT;
|
|
|
|
HBt e() default HBt.DEFAULT;
|
|
}
|