All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytekast.netsuite.client.ItemFulfillmentAncillaryEndorsementFedEx Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ItemFulfillmentAncillaryEndorsementFedEx. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="ItemFulfillmentAncillaryEndorsementFedEx">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_addressCorrection"/>
 *     <enumeration value="_carrierLeaveIfNoResponse"/>
 *     <enumeration value="_changeService"/>
 *     <enumeration value="_forwardingService"/>
 *     <enumeration value="_returnService"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ItemFulfillmentAncillaryEndorsementFedEx", namespace = "urn:types.sales_2017_1.transactions.webservices.netsuite.com") @XmlEnum public enum ItemFulfillmentAncillaryEndorsementFedEx { @XmlEnumValue("_addressCorrection") ADDRESS_CORRECTION("_addressCorrection"), @XmlEnumValue("_carrierLeaveIfNoResponse") CARRIER_LEAVE_IF_NO_RESPONSE("_carrierLeaveIfNoResponse"), @XmlEnumValue("_changeService") CHANGE_SERVICE("_changeService"), @XmlEnumValue("_forwardingService") FORWARDING_SERVICE("_forwardingService"), @XmlEnumValue("_returnService") RETURN_SERVICE("_returnService"); private final String value; ItemFulfillmentAncillaryEndorsementFedEx(String v) { value = v; } public String value() { return value; } public static ItemFulfillmentAncillaryEndorsementFedEx fromValue(String v) { for (ItemFulfillmentAncillaryEndorsementFedEx c: ItemFulfillmentAncillaryEndorsementFedEx.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy