
tsg.ns.wsdl.coop.LandedCostSource 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 LandedCostSource.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="LandedCostSource">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="_manual"/>
* <enumeration value="_otherTransaction"/>
* <enumeration value="_otherTransactionExcludeTax"/>
* <enumeration value="_thisTransaction"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "LandedCostSource", namespace = "urn:types.common_2023_1.platform.webservices.netsuite.com")
@XmlEnum
public enum LandedCostSource {
@XmlEnumValue("_manual")
MANUAL("_manual"),
@XmlEnumValue("_otherTransaction")
OTHER_TRANSACTION("_otherTransaction"),
@XmlEnumValue("_otherTransactionExcludeTax")
OTHER_TRANSACTION_EXCLUDE_TAX("_otherTransactionExcludeTax"),
@XmlEnumValue("_thisTransaction")
THIS_TRANSACTION("_thisTransaction");
private final String value;
LandedCostSource(String v) {
value = v;
}
public String value() {
return value;
}
public static LandedCostSource fromValue(String v) {
for (LandedCostSource c: LandedCostSource.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy