mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
24 lines
663 B
Java
24 lines
663 B
Java
package androidx.media3.common.text;
|
|
|
|
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: classes2.dex */
|
|
public final class TextAnnotation {
|
|
public static final int POSITION_AFTER = 2;
|
|
public static final int POSITION_BEFORE = 1;
|
|
public static final int POSITION_UNKNOWN = -1;
|
|
|
|
@Target({ElementType.TYPE_USE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
/* loaded from: classes2.dex */
|
|
public @interface Position {
|
|
}
|
|
|
|
private TextAnnotation() {
|
|
}
|
|
}
|