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