Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 22889 |
amit.gupta |
1 |
package com.spice.profitmandi.dao.enumuration.dtr;
|
|
|
2 |
|
|
|
3 |
public enum ThirdParty {
|
|
|
4 |
GADGET_COP(0);
|
|
|
5 |
private int value;
|
|
|
6 |
private ThirdParty(int value) {
|
|
|
7 |
this.value = value;
|
|
|
8 |
}
|
|
|
9 |
public int getValue() {
|
|
|
10 |
return value;
|
|
|
11 |
}
|
|
|
12 |
}
|