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

com.bytekast.netsuite.client.VsoeSopGroup 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 VsoeSopGroup. * *

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

*

 * <simpleType name="VsoeSopGroup">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_exclude"/>
 *     <enumeration value="_normal"/>
 *     <enumeration value="_software"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VsoeSopGroup", namespace = "urn:types.common_2017_1.platform.webservices.netsuite.com") @XmlEnum public enum VsoeSopGroup { @XmlEnumValue("_exclude") EXCLUDE("_exclude"), @XmlEnumValue("_normal") NORMAL("_normal"), @XmlEnumValue("_software") SOFTWARE("_software"); private final String value; VsoeSopGroup(String v) { value = v; } public String value() { return value; } public static VsoeSopGroup fromValue(String v) { for (VsoeSopGroup c: VsoeSopGroup.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy