xref: /annotation/annotation-experimental/api/restricted_1.0.0-beta01.txt
  • Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Signature format: 4.0
2package androidx.annotation.experimental {
3
4  @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target({java.lang.annotation.ElementType.ANNOTATION_TYPE}) public @interface Experimental {
5    method public abstract androidx.annotation.experimental.Experimental.Level level() default androidx.annotation.experimental.Experimental.Level.ERROR;
6  }
7
8  public enum Experimental.Level {
9    enum_constant public static final androidx.annotation.experimental.Experimental.Level ERROR;
10    enum_constant public static final androidx.annotation.experimental.Experimental.Level WARNING;
11  }
12
13  @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.CONSTRUCTOR, java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.PACKAGE}) public @interface UseExperimental {
14    method public abstract Class<?> markerClass();
15  }
16
17}
18
19

[XRef Android]