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

tsg.ns.wsdl.coop.InboundShipmentShipmentStatus Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

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


/**
 * 

Java class for InboundShipmentShipmentStatus. * *

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

 * <simpleType name="InboundShipmentShipmentStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_closed"/>
 *     <enumeration value="_inTransit"/>
 *     <enumeration value="_partiallyReceived"/>
 *     <enumeration value="_received"/>
 *     <enumeration value="_toBeShipped"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "InboundShipmentShipmentStatus", namespace = "urn:types.purchases_2023_1.transactions.webservices.netsuite.com") @XmlEnum public enum InboundShipmentShipmentStatus { @XmlEnumValue("_closed") CLOSED("_closed"), @XmlEnumValue("_inTransit") IN_TRANSIT("_inTransit"), @XmlEnumValue("_partiallyReceived") PARTIALLY_RECEIVED("_partiallyReceived"), @XmlEnumValue("_received") RECEIVED("_received"), @XmlEnumValue("_toBeShipped") TO_BE_SHIPPED("_toBeShipped"); private final String value; InboundShipmentShipmentStatus(String v) { value = v; } public String value() { return value; } public static InboundShipmentShipmentStatus fromValue(String v) { for (InboundShipmentShipmentStatus c: InboundShipmentShipmentStatus.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy