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

tsg.ns.wsdl.coop.TaxRounding 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 TaxRounding. * *

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

 * <simpleType name="TaxRounding">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_roundDown"/>
 *     <enumeration value="_roundOff"/>
 *     <enumeration value="_roundUp"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TaxRounding", namespace = "urn:types.relationships_2023_1.lists.webservices.netsuite.com") @XmlEnum public enum TaxRounding { @XmlEnumValue("_roundDown") ROUND_DOWN("_roundDown"), @XmlEnumValue("_roundOff") ROUND_OFF("_roundOff"), @XmlEnumValue("_roundUp") ROUND_UP("_roundUp"); private final String value; TaxRounding(String v) { value = v; } public String value() { return value; } public static TaxRounding fromValue(String v) { for (TaxRounding c: TaxRounding.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy