Rev 23527 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.catalog;public enum AmountType {PERCENTAGE(0),FIXED(1),SLAB_FIXED(2);private int value;private AmountType(int value) {this.value = value;}public int getValue() {return value;}}