Rev 21719 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.dtr;public enum SocialType {GOOGLE(0),APPLE(1);private int value;private SocialType(int value){this.value = value;}public int getValue() {return value;}}