Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.common.enumuration;

public enum SearchType {
        CUSTOMER_NAME("Customer Name"),
        CUSTOMER_MOBILE_NUMBER("Customer Mobile Number"),
        IMEI("IMEI"),
        INVOICE_NUMBER("Invoice Number"),
        ITEM_NAME("Item Name");
        private String value;
        private SearchType(String value){
                this.value = value;
        }
        public String getValue() {
                return value;
        }
}