Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
23786 amit.gupta 1
package com.spice.profitmandi.common.enumuration;
2
 
3
public enum CounterSize {
4
	EIGHT_LAC(800000),
5
	TEN_LAC(1000000),
6
	FIFTEEN_LAC(1500000);
7
 
8
	private float value;
9
 
10
	private CounterSize(float value) {
11
		this.value = value;
12
	}
13
	public float getValue() {
14
		return value;
15
	}
16
}