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

eum枚举

时间:2017-04-26 11:55:17      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:com   sel   let   print   get   ring   value   static   setvalue   

1.枚举案例

package com.eum;

public enum Type {

    //列出枚举
    insert(1),update(2),select(3),delete(4);
    
//    设置属性值
    private Integer value;

    private Type(Integer value) {
        this.value = value;
    }

    public Integer getValue() {
        return value;
    }

    public void setValue(Integer value) {
        this.value = value;
    }
    
    public static void main(String[] args) {
        //获取枚举列表
        Type [] t=Type.values();
        for (Type type : t) {
            System.out.println(type);
        }
        //获取具体值
        System.out.println(Type.delete.getValue());
    }
}

 

eum枚举

标签:com   sel   let   print   get   ring   value   static   setvalue   

原文地址:http://www.cnblogs.com/javaweb2/p/6767543.html

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