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