Rev 23953 | 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"),DATE_RANGE("Date-Range");private String value;private SearchType(String value){this.value = value;}public String getValue() {return value;}}