Subversion Repositories SmartDukaan

Rev

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