| 7480 |
vikram.rag |
1 |
//
|
|
|
2 |
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
|
|
|
3 |
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
|
|
4 |
// Any modifications to this file will be lost upon recompilation of the source schema.
|
|
|
5 |
// Generated on: 2013.03.04 at 03:57:00 PM IST
|
|
|
6 |
//
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
package in.shop2020.feeds.products;
|
|
|
10 |
|
|
|
11 |
import javax.xml.bind.annotation.XmlEnum;
|
|
|
12 |
import javax.xml.bind.annotation.XmlType;
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
/**
|
|
|
16 |
* <p>Java class for BaseCurrencyCode.
|
|
|
17 |
*
|
|
|
18 |
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
|
19 |
* <p>
|
|
|
20 |
* <pre>
|
|
|
21 |
* <simpleType name="BaseCurrencyCode">
|
|
|
22 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
|
23 |
* <enumeration value="USD"/>
|
|
|
24 |
* <enumeration value="GBP"/>
|
|
|
25 |
* <enumeration value="EUR"/>
|
|
|
26 |
* <enumeration value="JPY"/>
|
|
|
27 |
* <enumeration value="CAD"/>
|
|
|
28 |
* <enumeration value="CNY"/>
|
|
|
29 |
* <enumeration value="INR"/>
|
|
|
30 |
* </restriction>
|
|
|
31 |
* </simpleType>
|
|
|
32 |
* </pre>
|
|
|
33 |
*
|
|
|
34 |
*/
|
|
|
35 |
@XmlType(name = "BaseCurrencyCode")
|
|
|
36 |
@XmlEnum
|
|
|
37 |
public enum BaseCurrencyCode {
|
|
|
38 |
|
|
|
39 |
USD,
|
|
|
40 |
GBP,
|
|
|
41 |
EUR,
|
|
|
42 |
JPY,
|
|
|
43 |
CAD,
|
|
|
44 |
CNY,
|
|
|
45 |
INR;
|
|
|
46 |
|
|
|
47 |
public String value() {
|
|
|
48 |
return name();
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
public static BaseCurrencyCode fromValue(String v) {
|
|
|
52 |
return valueOf(v);
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
}
|