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

com.bytekast.netsuite.client.GeneralRateType Maven / Gradle / Ivy

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 GeneralRateType. * *

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

*

 * <simpleType name="GeneralRateType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_average"/>
 *     <enumeration value="_current"/>
 *     <enumeration value="_historical"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "GeneralRateType", namespace = "urn:types.accounting_2017_1.lists.webservices.netsuite.com") @XmlEnum public enum GeneralRateType { @XmlEnumValue("_average") AVERAGE("_average"), @XmlEnumValue("_current") CURRENT("_current"), @XmlEnumValue("_historical") HISTORICAL("_historical"); private final String value; GeneralRateType(String v) { value = v; } public String value() { return value; } public static GeneralRateType fromValue(String v) { for (GeneralRateType c: GeneralRateType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy