Subversion Repositories SmartDukaan

Rev

Rev 23953 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23201 ashik.ali 1
package com.spice.profitmandi.common.enumuration;
2
 
3
public enum SearchType {
4
	CUSTOMER_NAME("Customer Name"),
5
	CUSTOMER_MOBILE_NUMBER("Customer Mobile Number"),
6
	IMEI("IMEI"),
23953 amit.gupta 7
	INVOICE_NUMBER("Invoice Number"),
23973 govind 8
	ITEM_NAME("Item Name"),
9
	DATE_RANGE("Date-Range");
23201 ashik.ali 10
	private String value;
11
	private SearchType(String value){
12
		this.value = value;
13
	}
14
	public String getValue() {
15
		return value;
16
	}
17
}