美文网首页
替代枚举的注解

替代枚举的注解

作者: 楷桐 | 来源:发表于2017-10-19 00:33 被阅读62次
    • Android中新引入的替代枚举的注解有IntDef和StringDef,这里以IntDef做例子说明一下.
    public class Colors {
        @IntDef({RED, GREEN, YELLOW})
        //声明必要的int常量,使用@IntDef修饰LightColors,参数设置为待枚举的集合
        @Retention(RetentionPolicy.SOURCE)
        //使用@Retention(RetentionPolicy.SOURCE)指定注解仅存在与源码中,不加入到class文件中
        public @interface LightColors{}
        //声明一个注解为LightColors
        public static final int RED = 0;
        public static final int GREEN = 1;
        public static final int YELLOW = 2;
    }
    //用法
    private void setColor(@Colors.LightColors int color) {
            Log.d("MainActivity", "setColor color=" + color);
    }
    //调用的该方法的时候
    setColor(Colors.GREEN);
    

    相关文章

      网友评论

          本文标题:替代枚举的注解

          本文链接:https://www.haomeiwen.com/subject/wemyuxtx.html