com.bytekast.netsuite.client.VsoeDeferral Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netsuite-suitetalk Show documentation
Show all versions of netsuite-suitetalk Show documentation
Client API for NetSuite Suitetalk Web Services
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 VsoeDeferral.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="VsoeDeferral">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="_deferBundleUntilDelivered"/>
* <enumeration value="_deferUntilItemDelivered"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "VsoeDeferral", namespace = "urn:types.common_2017_1.platform.webservices.netsuite.com")
@XmlEnum
public enum VsoeDeferral {
@XmlEnumValue("_deferBundleUntilDelivered")
DEFER_BUNDLE_UNTIL_DELIVERED("_deferBundleUntilDelivered"),
@XmlEnumValue("_deferUntilItemDelivered")
DEFER_UNTIL_ITEM_DELIVERED("_deferUntilItemDelivered");
private final String value;
VsoeDeferral(String v) {
value = v;
}
public String value() {
return value;
}
public static VsoeDeferral fromValue(String v) {
for (VsoeDeferral c: VsoeDeferral.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}