package com.sandu.ximon.admin.security.order; public enum OrderScanType { C3M(0) ; private Integer type; OrderScanType(Integer type) { this.type = type; } public Integer getType() { return type; } }