Subversion Repositories SmartDukaan

Rev

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

Rev 25979 Rev 29598
Line 1... Line 1...
1
package com.spice.profitmandi.dao.enumuration.dtr;
1
package com.spice.profitmandi.dao.enumuration.dtr;
2
 
2
 
-
 
3
import java.util.Arrays;
-
 
4
import java.util.List;
-
 
5
 
3
public enum LeadSource {
6
public enum LeadSource {
4
SELF,NEWSPAPER,INTERNET,PARTNER
7
	SELF, NEWSPAPER, INTERNET, PARTNER, CONSULTANT, IVORY;
-
 
8
 
-
 
9
	public static List<LeadSource> enumValues = Arrays.asList(LeadSource.values());
-
 
10
 
5
}
11
}