Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.enumuration.dtr;

public enum SaleValue {
        UP_TO_FIVE_LAC(0),
        FIVE_TO_TEN_LAC(1),
        ABOVE_TEN_LAC(2);
        private int value;
        private SaleValue(int value) {
                this.value = value;
        }
        public int getValue() {
                return value;
        }
}