Subversion Repositories SmartDukaan

Rev

Rev 31522 | Rev 31538 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31522 Rev 31523
Line 5... Line 5...
5
import java.util.*;
5
import java.util.*;
6
import java.util.stream.Collectors;
6
import java.util.stream.Collectors;
7
import java.util.stream.Stream;
7
import java.util.stream.Stream;
8
 
8
 
9
public enum PartnerType {
9
public enum PartnerType {
10
	ALL("All"), PLATINUM("Platinum"), DIAMOND("Diamond"), GOLD("Gold"), SILVER("Silver"), BRONZE("Bronze"),
10
	ALL("All"), PLATINUM("Platinum"), DIAMOND("Diamond"), GOLD("Gold"), SILVER("Silver"), BRONZE("Bronze+"),
11
	NEW("Rising Star");
11
	NEW("Rising Star");
12
 
12
 
13
	private static final List<PartnerType> partnerTypes = new UnmodifiableList<>(
13
	private static final List<PartnerType> partnerTypes = new UnmodifiableList<>(
14
			Arrays.asList(BRONZE, SILVER, GOLD, DIAMOND, PLATINUM));
14
			Arrays.asList(BRONZE, SILVER, GOLD, DIAMOND, PLATINUM));
15
 
15