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