package com.jiuqi.mobile.nigo.comeclose.bean.base; public enum Test { car(1), driver(2); private int code; private Test(int code){ this.code = code; } public int getCode() { return code; } public static Test getTest(int code){ return null; } }