Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.common.enumuration;

public enum IndentStatus {
        OPEN("OPEN"),
        PENDING("PENDING"),
        ALLOCATED("ALLOCATED"),
        CLOSED("CLOSED");
        
        private String value;
        
        private IndentStatus(String value) {
                this.value = value;
        }
        public String getValue() {
                return value;
        }
}