Subversion Repositories SmartDukaan

Rev

Rev 23786 | Details | Compare with Previous | 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 {
31179 tejbeer 4
	ONE_LAC(100000), TWO_LAC(200000), THREE_LAC(300000), FOUR_LAC(400000), FIVE_LAC(500000), SIX_LAC(600000),
5
	SEVEN_LAC(700000), EIGHT_LAC(800000), NINE_LAC(800000), TEN_LAC(1000000), FIFTEEN_LAC(1500000),
6
 
7
	TWENTY_LAC(2000000), THIRTY_LAC(3000000), FOURTY_LAC(4000000);
8
 
23786 amit.gupta 9
	private float value;
31179 tejbeer 10
 
23786 amit.gupta 11
	private CounterSize(float value) {
12
		this.value = value;
13
	}
31179 tejbeer 14
 
23786 amit.gupta 15
	public float getValue() {
16
		return value;
17
	}
18
}