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

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

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

 * <simpleType name="CurrencyFxRateUpdateTimezone">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_americaNewYork"/>
 *     <enumeration value="_asiaMagadan"/>
 *     <enumeration value="_asiaTokyo"/>
 *     <enumeration value="_europeParis"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CurrencyFxRateUpdateTimezone", namespace = "urn:types.accounting_2023_1.lists.webservices.netsuite.com") @XmlEnum public enum CurrencyFxRateUpdateTimezone { @XmlEnumValue("_americaNewYork") AMERICA_NEW_YORK("_americaNewYork"), @XmlEnumValue("_asiaMagadan") ASIA_MAGADAN("_asiaMagadan"), @XmlEnumValue("_asiaTokyo") ASIA_TOKYO("_asiaTokyo"), @XmlEnumValue("_europeParis") EUROPE_PARIS("_europeParis"); private final String value; CurrencyFxRateUpdateTimezone(String v) { value = v; } public String value() { return value; } public static CurrencyFxRateUpdateTimezone fromValue(String v) { for (CurrencyFxRateUpdateTimezone c: CurrencyFxRateUpdateTimezone.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy