Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.enumuration;

public enum CounterSize {
        EIGHT_LAC(800000),
        TEN_LAC(1000000),
        FIFTEEN_LAC(1500000);
        
        private float value;
        
        private CounterSize(float value) {
                this.value = value;
        }
        public float getValue() {
                return value;
        }
}