Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21545 ashik.ali 1
package com.spice.profitmandi.dao.enumuration;
2
 
3
public enum Gender {
4
	MALE(0),
5
	FEMALE(1),
6
	OTHER(2);
7
	private int value;
8
	private Gender(int value){
9
		this.value = value;
10
	}
11
	public int getValue() {
12
		return value;
13
	}
14
}