Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public enum OperatorType {
        PREPAID(0),
        POSTPAID(1);
        private int value;
        private OperatorType(int value) {
                this.value = value;
        }
        public int getValue() {
                return value;
        }
}