Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7487 kshitij.so 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:49:29 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 MaximumPowerUnitOfMeasure.
17
 * 
18
 * <p>The following schema fragment specifies the expected content contained within this class.
19
 * <p>
20
 * <pre>
21
 * &lt;simpleType name="MaximumPowerUnitOfMeasure">
22
 *   &lt;restriction base="{}StringNotNull">
23
 *     &lt;enumeration value="W"/>
24
 *     &lt;enumeration value="KW"/>
25
 *   &lt;/restriction>
26
 * &lt;/simpleType>
27
 * </pre>
28
 * 
29
 */
30
@XmlType(name = "MaximumPowerUnitOfMeasure")
31
@XmlEnum
32
public enum MaximumPowerUnitOfMeasure {
33
 
34
    W,
35
    KW;
36
 
37
    public String value() {
38
        return name();
39
    }
40
 
41
    public static MaximumPowerUnitOfMeasure fromValue(String v) {
42
        return valueOf(v);
43
    }
44
 
45
}