Android 自定义注解

public interface UserConstant {
    /**
     * 性别
     */
    int GIRL = 0;
    int BOY = 1;
}
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.PARAMETER})
@IntDef(value = {UserConstant.BOY, UserConstant.GIRL})
public @interface Gender {
}
posted @ 2022-07-12 11:21  指切  阅读(62)  评论(0编辑  收藏  举报