Go to most recent revision | Details | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration;
public enum RetailerType {
TIN(0),
ESTABLISHMENT(1);
private int value;
private RetailerType(int value) {
this.value = value;
}
public int getValue() {
return value;