Subversion Repositories SmartDukaan

Rev

Rev 25652 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.entity.fofo;


public enum PartnerType {
        ALL("All"),
        PLATINUM("Platinum"),
        DIAMOND("Diamond"),
        GOLD("Gold"),
        SILVER("Silver"),
        BRONZE("Bronze"),
        NEW("Rising Star");
        private String value;
        private PartnerType(String value) {
                this.value = value;
        }
        public String getValue() {
                return value;
        }
}