Subversion Repositories SmartDukaan

Rev

Rev 12573 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12573 Rev 12576
Line 1... Line -...
1
Unexpected error.  File contents could not be restored from local history during undo/redo.
-
 
2
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
}
-
 
39