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

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

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

 * <simpleType name="Gender">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_omitted"/>
 *     <enumeration value="_female"/>
 *     <enumeration value="_male"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Gender", namespace = "urn:types.employees_2023_1.lists.webservices.netsuite.com") @XmlEnum public enum Gender { @XmlEnumValue("_omitted") OMITTED("_omitted"), @XmlEnumValue("_female") FEMALE("_female"), @XmlEnumValue("_male") MALE("_male"); private final String value; Gender(String v) { value = v; } public String value() { return value; } public static Gender fromValue(String v) { for (Gender c: Gender.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy