Java枚举

public enum EnumEntity {
/** 待处理 */
WILLCONFIRM {public Integer getName(){return 1;}},

/** 处理 */
CONFIRM {public Integer getName(){return 2;}},

/** 拒绝 */
REFUSE {public Integer getName(){return 3;}};

public abstract Integer getName();

}

你可能感兴趣的:(Java枚举)