mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-24 08:02:37 -06:00
59 lines
1.9 KiB
Java
59 lines
1.9 KiB
Java
package org.jetbrains.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;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ApiStatus {
|
|
|
|
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.CLASS)
|
|
/* loaded from: classes3.dex */
|
|
public @interface AvailableSince {
|
|
String value();
|
|
}
|
|
|
|
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.CLASS)
|
|
/* loaded from: classes3.dex */
|
|
public @interface Experimental {
|
|
}
|
|
|
|
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.CLASS)
|
|
/* loaded from: classes3.dex */
|
|
public @interface Internal {
|
|
}
|
|
|
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
|
@Documented
|
|
@Retention(RetentionPolicy.CLASS)
|
|
/* loaded from: classes3.dex */
|
|
public @interface NonExtendable {
|
|
}
|
|
|
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
|
@Documented
|
|
@Retention(RetentionPolicy.CLASS)
|
|
/* loaded from: classes3.dex */
|
|
public @interface OverrideOnly {
|
|
}
|
|
|
|
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.CLASS)
|
|
/* loaded from: classes3.dex */
|
|
public @interface ScheduledForRemoval {
|
|
String inVersion() default "";
|
|
}
|
|
|
|
private ApiStatus() {
|
|
throw new AssertionError("ApiStatus should not be instantiated");
|
|
}
|
|
}
|