Subversion Repositories SmartDukaan

Rev

Rev 25652 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
25503 amit.gupta 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
3
 
4
public enum PartnerType {
5
	ALL("All"),
6
	PLATINUM("Platinum"),
7
	DIAMOND("Diamond"),
8
	GOLD("Gold"),
9
	SILVER("Silver"),
10
	BRONZE("Bronze"),
11
	NEW("Rising Star");
12
	private String value;
13
	private PartnerType(String value) {
14
		this.value = value;
15
	}
16
	public String getValue() {
17
		return value;
18
	}
19
}
20