Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7473 vikram.rag 1
 
2
package com.amazonservices.mws.orders.model;
3
 
4
import javax.xml.bind.annotation.XmlEnum;
5
import javax.xml.bind.annotation.XmlType;
6
 
7
 
8
/**
9
 * <p>Java class for FulfillmentChannelEnum.
10
 * 
11
 * <p>The following schema fragment specifies the expected content contained within this class.
12
 * <p>
13
 * <pre>
14
 * &lt;simpleType name="FulfillmentChannelEnum">
15
 *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
16
 *     &lt;enumeration value="MFN"/>
17
 *     &lt;enumeration value="AFN"/>
18
 *   &lt;/restriction>
19
 * &lt;/simpleType>
20
 * </pre>
21
 * 
22
 */
23
@XmlType(name = "FulfillmentChannelEnum")
24
@XmlEnum
25
public enum FulfillmentChannelEnum {
26
 
27
    MFN,
28
    AFN;
29
 
30
    public String value() {
31
        return name();
32
    }
33
 
34
    public static FulfillmentChannelEnum fromValue(String v) {
35
        return valueOf(v);
36
    }
37
 
38
}