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