Subversion Repositories SmartDukaan

Rev

Rev 23201 | Go to most recent revision | 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"),
23201 ashik.ali 8
	ITEM_NAME("Item Name");
9
	private String value;
10
	private SearchType(String value){
11
		this.value = value;
12
	}
13
	public String getValue() {
14
		return value;
15
	}
16
}