Rev 22289 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.dtr;public enum RetailerType {GSTIN(0),TRADE_LICENCE(1),CERT_SHOP_EST_ACT(2),PERMIT_RETAIL_TRADE(3),TIN(4),ESTABLISHMENT(5);private int value;private RetailerType(int value) {this.value = value;}public int getValue() {return value;}}