码迷,mamicode.com
首页 > 其他好文 > 详细

hello

时间:2014-05-06 12:08:59      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   color   get   int   string   set   

 

 

 

private Color(String name,int index)
{
    this.setName(name);
    this.setIndex(index);
}

 

 

private Color(String name,int index)
{
    this.setName(name);
    this.setIndex(index);
}

public static String getName(int index)
{
    for (Color c :Color.values()) {
        if(c.getIndex()==index)
        {
            return c.name;
        }
    }
    return null;
}

hello,布布扣,bubuko.com

hello

标签:style   color   get   int   string   set   

原文地址:http://www.cnblogs.com/leiwei/p/3710521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!