Rev 22731 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.dtr;public enum SaleValue {UPTO_FIVE_LAC("Upto 5Lac"),FIVE_TO_TEN_LAC("5Lac to 10Lac"),TEN_TO_TWENTY_FIVE_LAC("10Lac to 25Lac"),TWENTY_FIVE_LAC_ABOVE("Above 25Lac");private String value;private SaleValue(String value) {this.value = value;}public String getValue() {return value;}}