Blame | Last modification | View Log | RSS feed
package com.amazonservices.mws.orders.model;import javax.xml.bind.annotation.XmlEnum;import javax.xml.bind.annotation.XmlType;/*** <p>Java class for FulfillmentChannelEnum.** <p>The following schema fragment specifies the expected content contained within this class.* <p>* <pre>* <simpleType name="FulfillmentChannelEnum">* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="MFN"/>* <enumeration value="AFN"/>* </restriction>* </simpleType>* </pre>**/@XmlType(name = "FulfillmentChannelEnum")@XmlEnumpublic enum FulfillmentChannelEnum {MFN,AFN;public String value() {return name();}public static FulfillmentChannelEnum fromValue(String v) {return valueOf(v);}}