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

com.bytekast.netsuite.client.LandedCostMethod 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 LandedCostMethod. * *

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

*

 * <simpleType name="LandedCostMethod">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_quantity"/>
 *     <enumeration value="_value"/>
 *     <enumeration value="_weight"/>
 *     <enumeration value="_line"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "LandedCostMethod", namespace = "urn:types.common_2017_1.platform.webservices.netsuite.com") @XmlEnum public enum LandedCostMethod { @XmlEnumValue("_quantity") QUANTITY("_quantity"), @XmlEnumValue("_value") VALUE("_value"), @XmlEnumValue("_weight") WEIGHT("_weight"), @XmlEnumValue("_line") LINE("_line"); private final String value; LandedCostMethod(String v) { value = v; } public String value() { return value; } public static LandedCostMethod fromValue(String v) { for (LandedCostMethod c: LandedCostMethod.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy